diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e495e179..22aeaa2aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -493,24 +493,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **component/pswdinput:** increase CSS specificity on the input[type=password"] element ([#1032](https://github.com/adeo/mozaic-design-system/issues/1032)) ([9cbed7c](https://github.com/adeo/mozaic-design-system/commit/9cbed7c34a3d37be0bc15c08acfa3b59c6684e06)) - **foundations/icons:** add typescript to react icons ([#1025](https://github.com/adeo/mozaic-design-system/issues/1025)) ([93ce0ff](https://github.com/adeo/mozaic-design-system/commit/93ce0ff0c9b85bfac4e10149def885790631a360)) -# [2.0.0-rc.0](https://github.com/adeo/mozaic-design-system/compare/v1.24.2...v2.0.0-rc.0) (2022-02-08) - - -### Bug Fixes - -* **comment:** add comment in option card ([459fb53](https://github.com/adeo/mozaic-design-system/commit/459fb53c8c783abc9a4a57890fa89e20318b43a2)) -* **readme:** update link ([a681853](https://github.com/adeo/mozaic-design-system/commit/a6818533aeeb6a1a68333ee4e8385077901b5acc)) -* **release:** empty commit due to release issue ([e9a83cb](https://github.com/adeo/mozaic-design-system/commit/e9a83cbd9893c086adee6e1b752ae1e0a64151be)) - - -### Features - -* **pattern/colors:** add new LM colours ([#999](https://github.com/adeo/mozaic-design-system/issues/999)) ([8854fb8](https://github.com/adeo/mozaic-design-system/commit/8854fb89fda1ecd3d9be10b9fcc7aa102fdc7102)) - - - - - ## [1.24.1](https://github.com/adeo/mozaic-design-system/compare/v1.24.0...v1.24.1) (2022-02-02) ### Bug Fixes diff --git a/README.md b/README.md index ccc36a7a0..36b6b77f4 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Adeo Design System -> Mozaic is an open-source design system built by ADEO, designed to help set up a coherent human experience, to reinforce team’s delivery time and improve quality of deliverables. +> Mozaic is an open-source design system built by Adeo, designed to help set up a coherent human experience, to reinforce team’s delivery time and improve quality of deliverables.

diff --git a/iconCompiler/index.js b/iconCompiler/index.js index 10ae6467b..13690e877 100644 --- a/iconCompiler/index.js +++ b/iconCompiler/index.js @@ -39,12 +39,12 @@ cleanDirectories(config) .then((icons) => { console.log(outputIconSetSize(icons[0], icons[1])) console.log('✓ SUCCESS : Icons cleaned and saved as SVGs in the package') - const allIcons = icons[0].concat(icons[1]) + return Promise.all([ - generateIconComponent('react', allIcons), + generateIconComponent('react', icons[0]), generateIconComponent('vue', icons[0]), - generateIconComponent('svelte', allIcons), - generateIconsModules(allIcons), + generateIconComponent('svelte', icons[0]), + generateIconsModules(icons[0].concat(icons[1])), generateIconsDatas(icons), ]).then(() => Promise.resolve()) }) diff --git a/mozaic.config.js b/mozaic.config.js deleted file mode 100644 index 0742df216..000000000 --- a/mozaic.config.js +++ /dev/null @@ -1,5 +0,0 @@ -module.exports = { - tokens: { - platforms: ['css', 'js'], - }, -} diff --git a/package.json b/package.json index 52e845ce5..13582185f 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,8 @@ { "name": "@mozaic-ds/designsystem", - "description": "Mozaic is an open-source design system built by ADEO, designed to help set up a coherent human experience, to reinforce team’s delivery time and improve quality of deliverables.", - "version": "2.0.0", - "contributors": [ - { - "name": "Charles-Antoine Queste", - "email": "charles-antoine.queste@adeo.com" - }, - { - "name": "Trésor Iloyi", - "email": "tresor.iloyi@ext.adeo.com" - }, - { - "name": "Mohamed Mokhtari", - "email": "mohamed.mokhtari@ext.adeo.com" - } - ], + "description": "leroy merlin design system", + "version": "0.0.0", + "author": "Gaël BOYENVAL ", "repository": { "type": "git", "url": "https://github.com/adeo/mozaic-design-system" @@ -73,7 +60,7 @@ }, "scripts": { "tokens:build": "mozaic-tokens-build", - "tokens:clean": "test -d 'packages/tokens/build/' && rm -rf packages/tokens/build/ || echo 'nothing to clean'", + "tokens:clean": "test -d 'packages/tokens/build/' && npx style-dictionary clean --config ./packages/tokens/config.js || echo 'nothing to clean'", "tokens:clean-build": "yarn tokens:clean && yarn tokens:build", "assets:upload": "node ci/assets.js", "ci:wait": "node ci/deploy.js", @@ -89,10 +76,8 @@ "predevelop": "yarn tokens:clean-build", "release": "npx lerna version --conventional-commits --conventional-graduate --changelog-preset angular --message 'chore(release): publish %s' --create-release=github", "releaseBeta": "npx lerna version --conventional-commits --conventional-prerelease --changelog-preset angular --message 'chore(release): publish %s' --create-release=github --preid beta", - "releaseCandidate": "npx lerna version --conventional-commits --conventional-prerelease --changelog-preset angular --message 'chore(release): publish %s' --create-release=github --preid rc", - "npm:publish": "npx lerna exec --no-bail -- npm publish", - "npm:publishBeta": "npx lerna exec --no-bail -- npm publish --tag beta", - "npm:publishCandidate": "npx lerna exec --no-bail -- npm publish --tag rc", + "npm:publish": "npx lerna exec --bail=false npm publish", + "npm:publishBeta": "npx lerna exec --bail=false npm publish --tag beta", "unit": "jest --projects ./packages/*/jest.config.js --coverage --verbose --color --no-cache", "unit:watch": "jest --watch --silent", "unit:coverage": "jest --coverage --collectCoverageFrom='**/*.js'", diff --git a/packages/css-dev-tools/CHANGELOG.md b/packages/css-dev-tools/CHANGELOG.md index 13b9f57ff..0ad91dce2 100644 --- a/packages/css-dev-tools/CHANGELOG.md +++ b/packages/css-dev-tools/CHANGELOG.md @@ -49,18 +49,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @mozaic-ds/css-dev-tools - - - - -# [2.0.0-rc.0](https://github.com/adeo/mozaic-design-system/compare/v1.24.2...v2.0.0-rc.0) (2022-02-08) - -**Note:** Version bump only for package @mozaic-ds/css-dev-tools - - - - - # [1.24.0](https://github.com/adeo/mozaic-design-system/compare/v1.23.1...v1.24.0) (2022-02-02) **Note:** Version bump only for package @mozaic-ds/css-dev-tools diff --git a/packages/css-dev-tools/postcssPluginConfig.js b/packages/css-dev-tools/postcssPluginConfig.js index 644421205..fd246a54f 100644 --- a/packages/css-dev-tools/postcssPluginConfig.js +++ b/packages/css-dev-tools/postcssPluginConfig.js @@ -3,6 +3,7 @@ const scssSyntax = require('postcss-scss') const autoprefixer = require('autoprefixer') const postcssSass = require('@csstools/postcss-sass') const stylelint = require('stylelint') +const base64 = require('postcss-base64') const reporter = require('postcss-reporter') const cssnano = require('cssnano') const purgecss = require('@fullhuman/postcss-purgecss') @@ -19,9 +20,9 @@ const styleLintConfig = require('./styleLintConfig') const baseSassConfig = require('./sassConfig') // load browserlist config -const browserslistConfig = CM.getKey('browserslist') +const borwserslistConfig = CM.getKey('browserslist') ? CM.getKey('browserslist') - : ['last 2 versions', 'firefox >= 52'] + : ['> 0.3%', 'last 3 version', 'IE > 10'] const sassConfig = CM.getKey('sass.config') ? CM.getKey('sass.config') @@ -34,11 +35,15 @@ const plugins = [ reporter({ clearReportedMessages: true }), cssprepend(`$mozaic-env: ${mozaicEnvScssVar};`), postcssSass(sassConfig), + base64({ + pattern: //i, + prepend: 'data:image/svg+xml;base64,', + }), mqpackerondemand({ sort: true, }), autoprefixer({ - overrideBrowserslist: browserslistConfig, + overrideBrowserslist: borwserslistConfig, }), ] @@ -53,11 +58,15 @@ if (CM.getKey('autoprefixer.disabled')) { const productionPlugins = [ cssprepend(`$mozaic-env: ${mozaicEnvScssVar};`), postcssSass(sassConfig), + base64({ + pattern: //i, + prepend: 'data:image/svg+xml;base64,', + }), mqpackerondemand({ sort: true, }), autoprefixer({ - overrideBrowserslist: browserslistConfig, + overrideBrowserslist: borwserslistConfig, }), cssnano(['default', { discardComments: { removeAll: true } }]), ] diff --git a/packages/css-dev-tools/sassConfig.js b/packages/css-dev-tools/sassConfig.js index 7cce02bb0..a47a4d205 100644 --- a/packages/css-dev-tools/sassConfig.js +++ b/packages/css-dev-tools/sassConfig.js @@ -1,8 +1,6 @@ 'use strict' const CM = require('@mozaic-ds/configuration-manager') -const preset = CM.getKey('preset') ?? 'lm' - // test for user configured additional paths const additionalPaths = CM.getKey('sass.includePaths') @@ -23,8 +21,8 @@ const basePaths = [ const tokensPath = tokensBuildPath ? basePaths.concat([`${tokensBuildPath}scss/`]) : basePaths.concat([ - `./node_modules/@mozaic-ds/tokens/build/${preset}/css/`, - `./node_modules/@mozaic-ds/tokens/build/${preset}/scss/`, + './node_modules/@mozaic-ds/tokens/build/css/', + './node_modules/@mozaic-ds/tokens/build/scss/', ]) const includePaths = additionalPaths diff --git a/packages/css-dev-tools/styleLintConfig.js b/packages/css-dev-tools/styleLintConfig.js index 858f56aa4..c22826ca7 100644 --- a/packages/css-dev-tools/styleLintConfig.js +++ b/packages/css-dev-tools/styleLintConfig.js @@ -35,15 +35,28 @@ module.exports = { extends: ['stylelint-config-standard-scss'], plugins: ['@mozaic-ds/stylelint-plugin-mozaic'], rules: { + 'at-rule-no-unknown': null, + 'max-empty-lines': null, 'plugin/mozaic-bem-pattern': [pickConfig()], - // rules from Stylelint + 'no-invalid-position-at-import-rule': null, + 'max-line-length': null, 'alpha-value-notation': null, 'selector-class-pattern': null, - 'selector-id-pattern': null, - 'no-invalid-position-at-import-rule': null, - 'selector-not-notation': 'simple', - // rules from stylelint-scss 'scss/no-global-function-names': null, - 'scss/at-mixin-argumentless-call-parentheses': 'always', + // TODO: the following rules should be removed from the file when switching to @next + 'scss/at-mixin-argumentless-call-parentheses': null, + 'scss/at-import-partial-extension': null, + 'scss/at-import-no-partial-leading-underscore': null, + 'scss/double-slash-comment-empty-line-before': null, + 'scss/at-rule-conditional-no-parentheses': null, + 'custom-property-no-missing-var-function': null, + 'string-quotes': null, + 'at-rule-empty-line-before': null, + 'color-function-notation': null, + 'function-url-quotes': null, + 'value-keyword-case': null, + 'declaration-colon-newline-after': null, + 'rule-empty-line-before': null, + 'no-descending-specificity': null, }, } diff --git a/packages/gatsby-source-preview/gatsby-node.js b/packages/gatsby-source-preview/gatsby-node.js index 566b705b2..d98557228 100644 --- a/packages/gatsby-source-preview/gatsby-node.js +++ b/packages/gatsby-source-preview/gatsby-node.js @@ -111,10 +111,10 @@ exports.sourceNodes = (tools, configOptions) => { ) { reporter.info(`changed PREVIEW file at ${path}`) - // Avoid reloading all previews during dev + // is global style? Just rebuild everything! const globalStylePath = 'packages/styles/' if (path.replace(/\\/g, '/').indexOf(globalStylePath) > -1) { - return buildPreviews(path) + return buildPreviews() .then(reporter.success(`previews built`)) .catch((err) => reporter.error(err)) } diff --git a/packages/gatsby-theme-styleguide/CHANGELOG.md b/packages/gatsby-theme-styleguide/CHANGELOG.md index 9f2993a3a..3c0f29f5f 100644 --- a/packages/gatsby-theme-styleguide/CHANGELOG.md +++ b/packages/gatsby-theme-styleguide/CHANGELOG.md @@ -53,18 +53,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @mozaic-ds/gatsby-theme-styleguide - - - - -# [2.0.0-rc.0](https://github.com/adeo/mozaic-design-system/compare/v1.24.2...v2.0.0-rc.0) (2022-02-08) - -**Note:** Version bump only for package @mozaic-ds/gatsby-theme-styleguide - - - - - # [1.24.0](https://github.com/adeo/mozaic-design-system/compare/v1.23.1...v1.24.0) (2022-02-02) **Note:** Version bump only for package @mozaic-ds/gatsby-theme-styleguide diff --git a/packages/gatsby-theme-styleguide/package.json b/packages/gatsby-theme-styleguide/package.json index 41cd8cd54..b025b48e6 100644 --- a/packages/gatsby-theme-styleguide/package.json +++ b/packages/gatsby-theme-styleguide/package.json @@ -2,20 +2,7 @@ "name": "@mozaic-ds/gatsby-theme-styleguide", "version": "1.60.0", "main": "index.js", - "contributors": [ - { - "name": "Charles-Antoine Queste", - "email": "charles-antoine.queste@adeo.com" - }, - { - "name": "Trésor Iloyi", - "email": "tresor.iloyi@ext.adeo.com" - }, - { - "name": "Mohamed Mokhtari", - "email": "mohamed.mokhtari@ext.adeo.com" - } - ], + "author": "gael-boyenval (gaelboyenval@icloud.com)", "license": "MIT", "dependencies": { "@mdx-js/mdx": "^1.6.22", diff --git a/packages/gatsby-theme-styleguide/src/components/McButton/styles.scss b/packages/gatsby-theme-styleguide/src/components/McButton/styles.scss index f26aa2a6c..81ccd6506 100644 --- a/packages/gatsby-theme-styleguide/src/components/McButton/styles.scss +++ b/packages/gatsby-theme-styleguide/src/components/McButton/styles.scss @@ -1,4 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; + @include import-font-families(); + @import "components/c.button"; diff --git a/packages/gatsby-theme-styleguide/src/components/McCheckbox/styles.scss b/packages/gatsby-theme-styleguide/src/components/McCheckbox/styles.scss index 448e4fb2e..c4e707dbf 100644 --- a/packages/gatsby-theme-styleguide/src/components/McCheckbox/styles.scss +++ b/packages/gatsby-theme-styleguide/src/components/McCheckbox/styles.scss @@ -1,6 +1,7 @@ -@import "tokens"; @import "settings-tools/all-settings"; + @include import-font-families(); + @import "components/c.checkbox"; .mc-checkbox { diff --git a/packages/gatsby-theme-styleguide/src/components/McTextInput/styles.scss b/packages/gatsby-theme-styleguide/src/components/McTextInput/styles.scss index 77c9034be..3a1c1d398 100644 --- a/packages/gatsby-theme-styleguide/src/components/McTextInput/styles.scss +++ b/packages/gatsby-theme-styleguide/src/components/McTextInput/styles.scss @@ -1,7 +1,8 @@ -@import "tokens"; -@import "all-settings"; +@import '_all-settings.scss'; + @include import-font-families(); -@import "c.text-input"; + +@import '_c.text-input.scss'; .mc-text-input { color: $color-grey-999; diff --git a/packages/gatsby-theme-styleguide/src/components/McToggle/styles.scss b/packages/gatsby-theme-styleguide/src/components/McToggle/styles.scss index 4acb86623..0272d9897 100644 --- a/packages/gatsby-theme-styleguide/src/components/McToggle/styles.scss +++ b/packages/gatsby-theme-styleguide/src/components/McToggle/styles.scss @@ -1,6 +1,7 @@ -@import "tokens"; @import "settings-tools/all-settings"; + @include import-font-families(); + @import "components/c.toggle"; .mc-toggle { diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/Container/Container.js b/packages/gatsby-theme-styleguide/src/gatsby-components/Container/Container.js index 3adb170aa..e0d333d91 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/Container/Container.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/Container/Container.js @@ -1,5 +1,5 @@ import styled from 'styled-components' -import { MagicUnit } from '@mozaic-ds/tokens/build/lm/js/tokens.js' +import { MagicUnit } from '@mozaic-ds/tokens/build/js/tokens.js' export default styled.div` padding: ${MagicUnit}rem ${MagicUnit * 2}rem; diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/Highlight/Highlight.js b/packages/gatsby-theme-styleguide/src/gatsby-components/Highlight/Highlight.js index 2e1605597..62532e1a0 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/Highlight/Highlight.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/Highlight/Highlight.js @@ -11,7 +11,7 @@ import { ColorGrey100, ColorGrey500, ColorGrey700, -} from '@mozaic-ds/tokens/build/lm/js/tokens' +} from '@mozaic-ds/tokens/build/js/tokens' const defaultTitles = { info: 'Information', diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/IconsLink/IconsLink.js b/packages/gatsby-theme-styleguide/src/gatsby-components/IconsLink/IconsLink.js deleted file mode 100644 index 834fb1ebe..000000000 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/IconsLink/IconsLink.js +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react' -import { StaticQuery, graphql } from 'gatsby' - -const IconsLink = (props) => { - const { children, ...rest } = props - return ( - { - return ( - - {children} - - ) - }} - /> - ) -} - -export default IconsLink diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/IconsLink/index.js b/packages/gatsby-theme-styleguide/src/gatsby-components/IconsLink/index.js deleted file mode 100644 index 0b023db99..000000000 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/IconsLink/index.js +++ /dev/null @@ -1 +0,0 @@ -export { default } from './IconsLink' diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/JSImplementation/JSImplementation.js b/packages/gatsby-theme-styleguide/src/gatsby-components/JSImplementation/JSImplementation.js index d53e2ecea..bd13ca028 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/JSImplementation/JSImplementation.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/JSImplementation/JSImplementation.js @@ -1,6 +1,6 @@ import React from 'react' import styled from 'styled-components' -import { MagicUnit } from '@mozaic-ds/tokens/build/lm/js/tokens.js' +import { MagicUnit } from '@mozaic-ds/tokens/build/js/tokens.js' import StatusFlag from '../StatusFlag' import { DisplayExternalLink16 } from '@mozaic-ds/icons/react' diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/PageTabs.js b/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/PageTabs.js index a807ad4b4..7cd4e1344 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/PageTabs.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/PageTabs.js @@ -1,19 +1,62 @@ import React, { PureComponent } from 'react' import { Link } from 'gatsby' import styled from 'styled-components' -import { MagicUnit } from '@mozaic-ds/tokens/build/lm/js/tokens.js' -import './styles.scss' +import { MagicUnit } from '@mozaic-ds/tokens/build/js/tokens.js' const Tabs = styled.div` -padding-left: 2rem; + position: sticky; + width: 100%; + z-index: 1; + top: 0; + border-bottom: solid 1px #000; + background: white; + + @media screen and (max-width: 767px) { + overflow-x: auto; + } ` -const TabsWrapper = styled.ul` +const TabsWrapper = styled.div` + display: inline-flex; + padding-left: ${MagicUnit * 1.5}rem; + max-width: ${MagicUnit * 52}rem; + + @media screen and (min-width: 768px) { + padding-left: ${MagicUnit * 3}rem; + } ` -const TabItem = styled.li`` +const TabItem = styled.div`` + +const TabLink = styled(Link)` + color: #000; + display: block; + position: relative; + padding: ${MagicUnit}rem ${MagicUnit * 1.5}rem; + + &::after { + content: ''; + position: absolute; + left: 0; + bottom: 0; + width: 100%; + height: 0.25rem; + } + + &:hover:not(.is-active) { + &::after { + background: rgba(0, 0, 0, 0.5); + } + } -const TabLink = styled(Link)`` + &.is-active { + font-weight: bold; + + &::after { + background: rgba(0, 0, 0, 1); + } + } +` class PageTabs extends PureComponent { orderPageTab = (pageTabs) => { @@ -46,19 +89,18 @@ class PageTabs extends PureComponent { const { samePageTabs } = this.props const cleanTabs = this.orderPageTab(samePageTabs) return ( - - + + {cleanTabs.map((node) => ( - + - {node.title} + {node.title} ))} diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/styles.scss b/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/styles.scss deleted file mode 100644 index becc51d5d..000000000 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/PageTabs/styles.scss +++ /dev/null @@ -1,5 +0,0 @@ -@import "tokens"; -@import "settings-tools/all-settings"; -@include import-font-families(); -@import "components/c.tabs"; - diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/PatternStatusGroup/PatternStatusGroup.js b/packages/gatsby-theme-styleguide/src/gatsby-components/PatternStatusGroup/PatternStatusGroup.js index 7e5474539..771510250 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/PatternStatusGroup/PatternStatusGroup.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/PatternStatusGroup/PatternStatusGroup.js @@ -3,7 +3,7 @@ import styled from 'styled-components' import StatusFlag from '../StatusFlag' import { checkPlatform, checkStatus } from '../../utils/status' -import { MagicUnit } from '@mozaic-ds/tokens/build/lm/js/tokens.js' +import { MagicUnit } from '@mozaic-ds/tokens/build/js/tokens.js' const StatusItem = styled.span` align-items: baseline; diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewComponent.js b/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewComponent.js index 45ff255c3..d4e374af4 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewComponent.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewComponent.js @@ -5,7 +5,7 @@ import PreviewCodeSample from './PreviewCodeSample' import PreviewToolBar from './PreviewToolBar' import PreviewFrame from './PreviewFrame' -import tokensObject from '@mozaic-ds/tokens/build/lm/js/tokensObject.js' +import tokensObject from '@mozaic-ds/tokens/build/js/tokensObject.js' import copyToClipboard from '../../utils/copy-to-clipboard' diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewFrame.js b/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewFrame.js index 200ff2a67..19852d0a7 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewFrame.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/Preview/PreviewFrame.js @@ -1,7 +1,7 @@ import React, { useState, useEffect, useRef } from 'react' import styled, { css } from 'styled-components' -import { MagicUnit } from '@mozaic-ds/tokens/build/lm/js/tokens.js' +import { MagicUnit } from '@mozaic-ds/tokens/build/js/tokens.js' const lineColor = `rgba(0, 100, 100, 0.1)` const subLineColor = `rgba(0, 100, 100, 0.03)` diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/Swatch/Swatch.js b/packages/gatsby-theme-styleguide/src/gatsby-components/Swatch/Swatch.js index 7d01ee007..5052a3257 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/Swatch/Swatch.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/Swatch/Swatch.js @@ -2,8 +2,8 @@ import React from 'react' import styled from 'styled-components' import Color from '../Color' -import tokens from '@mozaic-ds/tokens/build/lm/js/tokensObject.js' -import adeoTokens from '@mozaic-ds/tokens/build/adeo/js/tokensObject.js' +import tokens from '@mozaic-ds/tokens/build/js/tokensObject.js' +import adeoTokens from '@mozaic-ds/tokens/buildAdeo/js/tokensObject.js' const ColorWrapper = styled.div` flex: 0 0 32%; diff --git a/packages/gatsby-theme-styleguide/src/gatsby-components/layout.js b/packages/gatsby-theme-styleguide/src/gatsby-components/layout.js index a7ebcfea6..258efebeb 100644 --- a/packages/gatsby-theme-styleguide/src/gatsby-components/layout.js +++ b/packages/gatsby-theme-styleguide/src/gatsby-components/layout.js @@ -16,7 +16,6 @@ import InlineCode from '../gatsby-components/InlineCode' import Highlight from '../gatsby-components/Highlight' import SubContents from '../gatsby-components/SubContents' import DesignerKitLink from '../gatsby-components/DesignerKitLink' -import IconsLink from '../gatsby-components/IconsLink' const shortcodes = { Color, @@ -25,7 +24,6 @@ const shortcodes = { HintItem, IconViewer, DesignerKitLink, - IconsLink, Highlight, pre: ({ children }) => {children}, inlineCode: InlineCode, diff --git a/packages/gatsby-theme-styleguide/src/pages/index.scss b/packages/gatsby-theme-styleguide/src/pages/index.scss index d839687c8..c8be7acd3 100644 --- a/packages/gatsby-theme-styleguide/src/pages/index.scss +++ b/packages/gatsby-theme-styleguide/src/pages/index.scss @@ -1,13 +1,12 @@ -@import "https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i&display=swap&subset=latin-ext"; -@import "tokens"; -@import "settings-tools/all-settings"; -@import "l.flexy"; +@import url('https://fonts.googleapis.com/css?family=Karla:400,400i,700,700i&display=swap&subset=latin-ext'); +@import '_all-settings.scss'; +@import '_l.flexy.scss'; body, html { box-sizing: border-box; color: #000; - font-family: Karla, sans-serif !important; + font-family: 'Karla', sans-serif !important; font-size: 16px !important; font-weight: 400; line-height: 1.45; @@ -23,7 +22,7 @@ html { input, select { - font-family: Karla, sans-serif; + font-family: 'Karla', sans-serif; } .button { @@ -39,7 +38,7 @@ select { text-align: center; &:hover { - background: rgb(0 0 0 / 0.1); + background: rgba(0, 0, 0, 0.1); } &__menu { diff --git a/packages/gatsby-theme-styleguide/src/templates/pattern-page.js b/packages/gatsby-theme-styleguide/src/templates/pattern-page.js index cb397c0ad..aa09291ab 100644 --- a/packages/gatsby-theme-styleguide/src/templates/pattern-page.js +++ b/packages/gatsby-theme-styleguide/src/templates/pattern-page.js @@ -1,4 +1,4 @@ -import { MagicUnit } from '@mozaic-ds/tokens/build/lm/js/tokens.js' +import { MagicUnit } from '@mozaic-ds/tokens/build/js/tokens.js' import { graphql } from 'gatsby' import { MDXRenderer } from 'gatsby-plugin-mdx' import React from 'react' diff --git a/packages/icons/svelte/BrandLM24.svelte b/packages/icons/svelte/BrandLM24.svelte deleted file mode 100644 index 569ac659f..000000000 --- a/packages/icons/svelte/BrandLM24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/BrandLM32.svelte b/packages/icons/svelte/BrandLM32.svelte deleted file mode 100644 index cdef8afae..000000000 --- a/packages/icons/svelte/BrandLM32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/BrandLM48.svelte b/packages/icons/svelte/BrandLM48.svelte deleted file mode 100644 index 9150dffe1..000000000 --- a/packages/icons/svelte/BrandLM48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/BrandLM64.svelte b/packages/icons/svelte/BrandLM64.svelte deleted file mode 100644 index 4911438c6..000000000 --- a/packages/icons/svelte/BrandLM64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsAmericanExpress24.svelte b/packages/icons/svelte/CardsColorsAmericanExpress24.svelte deleted file mode 100644 index 6207ebc5b..000000000 --- a/packages/icons/svelte/CardsColorsAmericanExpress24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsAmericanExpress32.svelte b/packages/icons/svelte/CardsColorsAmericanExpress32.svelte deleted file mode 100644 index 744db59d1..000000000 --- a/packages/icons/svelte/CardsColorsAmericanExpress32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsAmericanExpress48.svelte b/packages/icons/svelte/CardsColorsAmericanExpress48.svelte deleted file mode 100644 index 768e03822..000000000 --- a/packages/icons/svelte/CardsColorsAmericanExpress48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsAmericanExpress64.svelte b/packages/icons/svelte/CardsColorsAmericanExpress64.svelte deleted file mode 100644 index 6274445fb..000000000 --- a/packages/icons/svelte/CardsColorsAmericanExpress64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCB24.svelte b/packages/icons/svelte/CardsColorsCB24.svelte deleted file mode 100644 index 59eff51d7..000000000 --- a/packages/icons/svelte/CardsColorsCB24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCB32.svelte b/packages/icons/svelte/CardsColorsCB32.svelte deleted file mode 100644 index 9a01424f1..000000000 --- a/packages/icons/svelte/CardsColorsCB32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCB48.svelte b/packages/icons/svelte/CardsColorsCB48.svelte deleted file mode 100644 index 3e63c0595..000000000 --- a/packages/icons/svelte/CardsColorsCB48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCB64.svelte b/packages/icons/svelte/CardsColorsCB64.svelte deleted file mode 100644 index f3aa0643d..000000000 --- a/packages/icons/svelte/CardsColorsCB64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCheque24.svelte b/packages/icons/svelte/CardsColorsCheque24.svelte deleted file mode 100644 index 2539a6c8b..000000000 --- a/packages/icons/svelte/CardsColorsCheque24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCheque32.svelte b/packages/icons/svelte/CardsColorsCheque32.svelte deleted file mode 100644 index 96352a96d..000000000 --- a/packages/icons/svelte/CardsColorsCheque32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCheque48.svelte b/packages/icons/svelte/CardsColorsCheque48.svelte deleted file mode 100644 index 8786181cb..000000000 --- a/packages/icons/svelte/CardsColorsCheque48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsCheque64.svelte b/packages/icons/svelte/CardsColorsCheque64.svelte deleted file mode 100644 index 9f6c4bf44..000000000 --- a/packages/icons/svelte/CardsColorsCheque64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsGift24.svelte b/packages/icons/svelte/CardsColorsGift24.svelte deleted file mode 100644 index 34063774b..000000000 --- a/packages/icons/svelte/CardsColorsGift24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsGift32.svelte b/packages/icons/svelte/CardsColorsGift32.svelte deleted file mode 100644 index 61c37f597..000000000 --- a/packages/icons/svelte/CardsColorsGift32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsGift48.svelte b/packages/icons/svelte/CardsColorsGift48.svelte deleted file mode 100644 index c5bf25424..000000000 --- a/packages/icons/svelte/CardsColorsGift48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsGift64.svelte b/packages/icons/svelte/CardsColorsGift64.svelte deleted file mode 100644 index 190ced6e0..000000000 --- a/packages/icons/svelte/CardsColorsGift64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsIllicado24.svelte b/packages/icons/svelte/CardsColorsIllicado24.svelte deleted file mode 100644 index 7d76bd9c0..000000000 --- a/packages/icons/svelte/CardsColorsIllicado24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsIllicado32.svelte b/packages/icons/svelte/CardsColorsIllicado32.svelte deleted file mode 100644 index ca129ad1a..000000000 --- a/packages/icons/svelte/CardsColorsIllicado32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsIllicado48.svelte b/packages/icons/svelte/CardsColorsIllicado48.svelte deleted file mode 100644 index cd10e0167..000000000 --- a/packages/icons/svelte/CardsColorsIllicado48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsIllicado64.svelte b/packages/icons/svelte/CardsColorsIllicado64.svelte deleted file mode 100644 index 259f80d21..000000000 --- a/packages/icons/svelte/CardsColorsIllicado64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsLoyalty24.svelte b/packages/icons/svelte/CardsColorsLoyalty24.svelte deleted file mode 100644 index e3e9ad130..000000000 --- a/packages/icons/svelte/CardsColorsLoyalty24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsLoyalty32.svelte b/packages/icons/svelte/CardsColorsLoyalty32.svelte deleted file mode 100644 index 17d7bcf01..000000000 --- a/packages/icons/svelte/CardsColorsLoyalty32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsLoyalty48.svelte b/packages/icons/svelte/CardsColorsLoyalty48.svelte deleted file mode 100644 index c40f7639c..000000000 --- a/packages/icons/svelte/CardsColorsLoyalty48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsLoyalty64.svelte b/packages/icons/svelte/CardsColorsLoyalty64.svelte deleted file mode 100644 index ea5782633..000000000 --- a/packages/icons/svelte/CardsColorsLoyalty64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMaestro24.svelte b/packages/icons/svelte/CardsColorsMaestro24.svelte deleted file mode 100644 index f7010e682..000000000 --- a/packages/icons/svelte/CardsColorsMaestro24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMaestro32.svelte b/packages/icons/svelte/CardsColorsMaestro32.svelte deleted file mode 100644 index 39a68a433..000000000 --- a/packages/icons/svelte/CardsColorsMaestro32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMaestro48.svelte b/packages/icons/svelte/CardsColorsMaestro48.svelte deleted file mode 100644 index 47ac39eb5..000000000 --- a/packages/icons/svelte/CardsColorsMaestro48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMaestro64.svelte b/packages/icons/svelte/CardsColorsMaestro64.svelte deleted file mode 100644 index 6e2959cff..000000000 --- a/packages/icons/svelte/CardsColorsMaestro64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMastercard24.svelte b/packages/icons/svelte/CardsColorsMastercard24.svelte deleted file mode 100644 index d78d17e10..000000000 --- a/packages/icons/svelte/CardsColorsMastercard24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMastercard32.svelte b/packages/icons/svelte/CardsColorsMastercard32.svelte deleted file mode 100644 index e79396e1e..000000000 --- a/packages/icons/svelte/CardsColorsMastercard32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMastercard48.svelte b/packages/icons/svelte/CardsColorsMastercard48.svelte deleted file mode 100644 index 3ed6f9c88..000000000 --- a/packages/icons/svelte/CardsColorsMastercard48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsMastercard64.svelte b/packages/icons/svelte/CardsColorsMastercard64.svelte deleted file mode 100644 index bf24addd1..000000000 --- a/packages/icons/svelte/CardsColorsMastercard64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOney24.svelte b/packages/icons/svelte/CardsColorsOney24.svelte deleted file mode 100644 index fceab8338..000000000 --- a/packages/icons/svelte/CardsColorsOney24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOney32.svelte b/packages/icons/svelte/CardsColorsOney32.svelte deleted file mode 100644 index 3aa2d4fc7..000000000 --- a/packages/icons/svelte/CardsColorsOney32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOney48.svelte b/packages/icons/svelte/CardsColorsOney48.svelte deleted file mode 100644 index 1db19aa80..000000000 --- a/packages/icons/svelte/CardsColorsOney48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOney64.svelte b/packages/icons/svelte/CardsColorsOney64.svelte deleted file mode 100644 index 4aa1ddc45..000000000 --- a/packages/icons/svelte/CardsColorsOney64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX324.svelte b/packages/icons/svelte/CardsColorsOneyX324.svelte deleted file mode 100644 index 3733640e3..000000000 --- a/packages/icons/svelte/CardsColorsOneyX324.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX332.svelte b/packages/icons/svelte/CardsColorsOneyX332.svelte deleted file mode 100644 index 6e983b7ec..000000000 --- a/packages/icons/svelte/CardsColorsOneyX332.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX348.svelte b/packages/icons/svelte/CardsColorsOneyX348.svelte deleted file mode 100644 index 890932977..000000000 --- a/packages/icons/svelte/CardsColorsOneyX348.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX364.svelte b/packages/icons/svelte/CardsColorsOneyX364.svelte deleted file mode 100644 index 1f0a38be0..000000000 --- a/packages/icons/svelte/CardsColorsOneyX364.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX424.svelte b/packages/icons/svelte/CardsColorsOneyX424.svelte deleted file mode 100644 index a51c2f434..000000000 --- a/packages/icons/svelte/CardsColorsOneyX424.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX432.svelte b/packages/icons/svelte/CardsColorsOneyX432.svelte deleted file mode 100644 index 83ce59603..000000000 --- a/packages/icons/svelte/CardsColorsOneyX432.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX448.svelte b/packages/icons/svelte/CardsColorsOneyX448.svelte deleted file mode 100644 index ed67ed928..000000000 --- a/packages/icons/svelte/CardsColorsOneyX448.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsOneyX464.svelte b/packages/icons/svelte/CardsColorsOneyX464.svelte deleted file mode 100644 index 47da11924..000000000 --- a/packages/icons/svelte/CardsColorsOneyX464.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaylib24.svelte b/packages/icons/svelte/CardsColorsPaylib24.svelte deleted file mode 100644 index 821d22354..000000000 --- a/packages/icons/svelte/CardsColorsPaylib24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaylib32.svelte b/packages/icons/svelte/CardsColorsPaylib32.svelte deleted file mode 100644 index 9f8a33576..000000000 --- a/packages/icons/svelte/CardsColorsPaylib32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaylib48.svelte b/packages/icons/svelte/CardsColorsPaylib48.svelte deleted file mode 100644 index ee28b1184..000000000 --- a/packages/icons/svelte/CardsColorsPaylib48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaylib64.svelte b/packages/icons/svelte/CardsColorsPaylib64.svelte deleted file mode 100644 index 9c3a450bb..000000000 --- a/packages/icons/svelte/CardsColorsPaylib64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaypal24.svelte b/packages/icons/svelte/CardsColorsPaypal24.svelte deleted file mode 100644 index b8e482559..000000000 --- a/packages/icons/svelte/CardsColorsPaypal24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaypal32.svelte b/packages/icons/svelte/CardsColorsPaypal32.svelte deleted file mode 100644 index b19244f6d..000000000 --- a/packages/icons/svelte/CardsColorsPaypal32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaypal48.svelte b/packages/icons/svelte/CardsColorsPaypal48.svelte deleted file mode 100644 index dc92424d3..000000000 --- a/packages/icons/svelte/CardsColorsPaypal48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsPaypal64.svelte b/packages/icons/svelte/CardsColorsPaypal64.svelte deleted file mode 100644 index 54039c7b3..000000000 --- a/packages/icons/svelte/CardsColorsPaypal64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsVisa24.svelte b/packages/icons/svelte/CardsColorsVisa24.svelte deleted file mode 100644 index 54363e81c..000000000 --- a/packages/icons/svelte/CardsColorsVisa24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsVisa32.svelte b/packages/icons/svelte/CardsColorsVisa32.svelte deleted file mode 100644 index ac87eaf40..000000000 --- a/packages/icons/svelte/CardsColorsVisa32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsVisa48.svelte b/packages/icons/svelte/CardsColorsVisa48.svelte deleted file mode 100644 index 8edbf7710..000000000 --- a/packages/icons/svelte/CardsColorsVisa48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/CardsColorsVisa64.svelte b/packages/icons/svelte/CardsColorsVisa64.svelte deleted file mode 100644 index cc0186396..000000000 --- a/packages/icons/svelte/CardsColorsVisa64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsRelayLocation24.svelte b/packages/icons/svelte/ColorsRelayLocation24.svelte deleted file mode 100644 index 6e9cac7c6..000000000 --- a/packages/icons/svelte/ColorsRelayLocation24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsRelayLocation32.svelte b/packages/icons/svelte/ColorsRelayLocation32.svelte deleted file mode 100644 index afb34dc47..000000000 --- a/packages/icons/svelte/ColorsRelayLocation32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsRelayLocation48.svelte b/packages/icons/svelte/ColorsRelayLocation48.svelte deleted file mode 100644 index 5a7afac32..000000000 --- a/packages/icons/svelte/ColorsRelayLocation48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsRelayLocation64.svelte b/packages/icons/svelte/ColorsRelayLocation64.svelte deleted file mode 100644 index 48a158b2d..000000000 --- a/packages/icons/svelte/ColorsRelayLocation64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsStoreLocation24.svelte b/packages/icons/svelte/ColorsStoreLocation24.svelte deleted file mode 100644 index fc3f4bbab..000000000 --- a/packages/icons/svelte/ColorsStoreLocation24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsStoreLocation32.svelte b/packages/icons/svelte/ColorsStoreLocation32.svelte deleted file mode 100644 index 74d4d2452..000000000 --- a/packages/icons/svelte/ColorsStoreLocation32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsStoreLocation48.svelte b/packages/icons/svelte/ColorsStoreLocation48.svelte deleted file mode 100644 index ae34adf8e..000000000 --- a/packages/icons/svelte/ColorsStoreLocation48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/ColorsStoreLocation64.svelte b/packages/icons/svelte/ColorsStoreLocation64.svelte deleted file mode 100644 index 5f32b453c..000000000 --- a/packages/icons/svelte/ColorsStoreLocation64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentBizum24.svelte b/packages/icons/svelte/PaymentBizum24.svelte deleted file mode 100644 index 498bf368d..000000000 --- a/packages/icons/svelte/PaymentBizum24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentBizum32.svelte b/packages/icons/svelte/PaymentBizum32.svelte deleted file mode 100644 index ddd27c738..000000000 --- a/packages/icons/svelte/PaymentBizum32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentBizum48.svelte b/packages/icons/svelte/PaymentBizum48.svelte deleted file mode 100644 index 00bd57a6d..000000000 --- a/packages/icons/svelte/PaymentBizum48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentBizum64.svelte b/packages/icons/svelte/PaymentBizum64.svelte deleted file mode 100644 index df15f0a9f..000000000 --- a/packages/icons/svelte/PaymentBizum64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentFintecture24.svelte b/packages/icons/svelte/PaymentFintecture24.svelte deleted file mode 100644 index 7a563d55c..000000000 --- a/packages/icons/svelte/PaymentFintecture24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentFintecture32.svelte b/packages/icons/svelte/PaymentFintecture32.svelte deleted file mode 100644 index f0bff62f7..000000000 --- a/packages/icons/svelte/PaymentFintecture32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentFintecture48.svelte b/packages/icons/svelte/PaymentFintecture48.svelte deleted file mode 100644 index 560e76425..000000000 --- a/packages/icons/svelte/PaymentFintecture48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentFintecture64.svelte b/packages/icons/svelte/PaymentFintecture64.svelte deleted file mode 100644 index 9741ab6c7..000000000 --- a/packages/icons/svelte/PaymentFintecture64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBMultibanco24.svelte b/packages/icons/svelte/PaymentMBMultibanco24.svelte deleted file mode 100644 index f43a5d58b..000000000 --- a/packages/icons/svelte/PaymentMBMultibanco24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBMultibanco32.svelte b/packages/icons/svelte/PaymentMBMultibanco32.svelte deleted file mode 100644 index 15c67ca36..000000000 --- a/packages/icons/svelte/PaymentMBMultibanco32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBMultibanco48.svelte b/packages/icons/svelte/PaymentMBMultibanco48.svelte deleted file mode 100644 index 3ce0cd137..000000000 --- a/packages/icons/svelte/PaymentMBMultibanco48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBMultibanco64.svelte b/packages/icons/svelte/PaymentMBMultibanco64.svelte deleted file mode 100644 index eda4c8baf..000000000 --- a/packages/icons/svelte/PaymentMBMultibanco64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBWay24.svelte b/packages/icons/svelte/PaymentMBWay24.svelte deleted file mode 100644 index 05c7cbd30..000000000 --- a/packages/icons/svelte/PaymentMBWay24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBWay32.svelte b/packages/icons/svelte/PaymentMBWay32.svelte deleted file mode 100644 index 7a98af10c..000000000 --- a/packages/icons/svelte/PaymentMBWay32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBWay48.svelte b/packages/icons/svelte/PaymentMBWay48.svelte deleted file mode 100644 index 28529e600..000000000 --- a/packages/icons/svelte/PaymentMBWay48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentMBWay64.svelte b/packages/icons/svelte/PaymentMBWay64.svelte deleted file mode 100644 index a5cc5d47e..000000000 --- a/packages/icons/svelte/PaymentMBWay64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x24.svelte b/packages/icons/svelte/PaymentOney3x24.svelte deleted file mode 100644 index cac8aa9be..000000000 --- a/packages/icons/svelte/PaymentOney3x24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x32.svelte b/packages/icons/svelte/PaymentOney3x32.svelte deleted file mode 100644 index 05e366608..000000000 --- a/packages/icons/svelte/PaymentOney3x32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x48.svelte b/packages/icons/svelte/PaymentOney3x48.svelte deleted file mode 100644 index ce18033f7..000000000 --- a/packages/icons/svelte/PaymentOney3x48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x4x24.svelte b/packages/icons/svelte/PaymentOney3x4x24.svelte deleted file mode 100644 index dc7a5b52e..000000000 --- a/packages/icons/svelte/PaymentOney3x4x24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x4x32.svelte b/packages/icons/svelte/PaymentOney3x4x32.svelte deleted file mode 100644 index 381fce94b..000000000 --- a/packages/icons/svelte/PaymentOney3x4x32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x4x48.svelte b/packages/icons/svelte/PaymentOney3x4x48.svelte deleted file mode 100644 index 4f8c3f625..000000000 --- a/packages/icons/svelte/PaymentOney3x4x48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x4x64.svelte b/packages/icons/svelte/PaymentOney3x4x64.svelte deleted file mode 100644 index dfd47f684..000000000 --- a/packages/icons/svelte/PaymentOney3x4x64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney3x64.svelte b/packages/icons/svelte/PaymentOney3x64.svelte deleted file mode 100644 index 42547af6d..000000000 --- a/packages/icons/svelte/PaymentOney3x64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney4x24.svelte b/packages/icons/svelte/PaymentOney4x24.svelte deleted file mode 100644 index 0601264aa..000000000 --- a/packages/icons/svelte/PaymentOney4x24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney4x32.svelte b/packages/icons/svelte/PaymentOney4x32.svelte deleted file mode 100644 index 1dc8ab633..000000000 --- a/packages/icons/svelte/PaymentOney4x32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney4x48.svelte b/packages/icons/svelte/PaymentOney4x48.svelte deleted file mode 100644 index 7b944c433..000000000 --- a/packages/icons/svelte/PaymentOney4x48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentOney4x64.svelte b/packages/icons/svelte/PaymentOney4x64.svelte deleted file mode 100644 index 4f20058a2..000000000 --- a/packages/icons/svelte/PaymentOney4x64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentPayPal24.svelte b/packages/icons/svelte/PaymentPayPal24.svelte deleted file mode 100644 index ddfb2f596..000000000 --- a/packages/icons/svelte/PaymentPayPal24.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentPayPal32.svelte b/packages/icons/svelte/PaymentPayPal32.svelte deleted file mode 100644 index 7f81cecc5..000000000 --- a/packages/icons/svelte/PaymentPayPal32.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentPayPal48.svelte b/packages/icons/svelte/PaymentPayPal48.svelte deleted file mode 100644 index 7fa3c6aa4..000000000 --- a/packages/icons/svelte/PaymentPayPal48.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/icons/svelte/PaymentPayPal64.svelte b/packages/icons/svelte/PaymentPayPal64.svelte deleted file mode 100644 index d7626dbbf..000000000 --- a/packages/icons/svelte/PaymentPayPal64.svelte +++ /dev/null @@ -1,10 +0,0 @@ - - - - \ No newline at end of file diff --git a/packages/postcss-media-queries-packer-on-demand/package.json b/packages/postcss-media-queries-packer-on-demand/package.json index 22a30bbff..860b65f3a 100644 --- a/packages/postcss-media-queries-packer-on-demand/package.json +++ b/packages/postcss-media-queries-packer-on-demand/package.json @@ -12,6 +12,7 @@ "test": "jest" }, "main": "index.js", + "author": "gael-boyenval ", "license": "MIT", "devDependencies": { "@babel/plugin-transform-runtime": "^7.21.4", diff --git a/packages/postcss-prepend/package.json b/packages/postcss-prepend/package.json index 55fbd5dca..681561583 100644 --- a/packages/postcss-prepend/package.json +++ b/packages/postcss-prepend/package.json @@ -12,6 +12,7 @@ "test": "jest" }, "main": "index.js", + "author": "Trésor ILOYI ", "license": "MIT", "devDependencies": { "jest": "^29.5.0", diff --git a/packages/stylelint-plugin-mozaic/README.md b/packages/stylelint-plugin-mozaic/README.md deleted file mode 100644 index b49315411..000000000 --- a/packages/stylelint-plugin-mozaic/README.md +++ /dev/null @@ -1,60 +0,0 @@ -# stylelint-plugin-mozaic - -A set of rules to enforce the CSS writing conventions of [Mozaic Design System](https://mozaic.adeo.cloud/). - -## Installation - -```shell -npm install --save-dev @mozaic-ds/stylelint-plugin-mozaic -``` - -## Usage - -Add `@mozaic-ds/stylelint-plugin-mozaic` to your Stylelint config plugins array, then add rules you need to the rules list. - -Add this config to your `.stylelintrc` or stylelint config inside `package.json`: - -```json -{ - "plugins": ["@mozaic-ds/stylelint-plugin-mozaic"], - "rules": { - "plugin/mozaic-bem-pattern": true - } -} -``` - -## List of rules - -### mozaic-bem-pattern - -This rule allows you to ensure that your SCSS code follows the Mozaic Design System writing conventions, namely: - -- CSS selectors must be written according to the BEM convention `.block__element--modifier` -- CSS selectors must be written in **kebab-case** -- All selectors must be prefixed with one of the following prefixes: `'mc-*', 'ml-*', 'mu-*', 'mt-*', 'mdu-*'` - -#### Options - -Each of the above options can be customised by passing an options object to the plugin in the following way: - -```javascript -const options = { - caseStyle: 'kebab-case', - bemEntitiesDelimiters: { - modifier: '--', - element: '__', - media: '@', - }, - prefixes: ['mc-', 'ml-', 'mu-', 'mt-', 'mdu-'], -} - -module.exports = { - extends: ['stylelint-config-standard-scss'], - plugins: ['@mozaic-ds/stylelint-plugin-mozaic'], - rules: { - 'at-rule-no-unknown': null, - 'max-empty-lines': null, - 'plugin/mozaic-bem-pattern': options, - }, -} -``` diff --git a/packages/stylelint-plugin-mozaic/index.js b/packages/stylelint-plugin-mozaic/index.js index 7406038fe..6694d801c 100644 --- a/packages/stylelint-plugin-mozaic/index.js +++ b/packages/stylelint-plugin-mozaic/index.js @@ -1,41 +1,37 @@ const _ = require('lodash') - const stylelint = require('stylelint') -const ruleName = 'plugin/mozaic-bem-pattern' +const checkCase = require('./lib/checkCase') const getSelector = require('./lib/getSelectors') const splitSelector = require('./lib/splitSelector') -const checkCase = require('./lib/checkCase') + +const ruleName = 'plugin/mozaic-bem-pattern' const isStringOrRegExp = (x) => { return _.isString(x) || _.isRegExp(x) } -module.exports = stylelint.createPlugin(ruleName, (options) => { - return (postcssRoot, postcssResult) => { - const validOptions = stylelint.utils.validateOptions( - postcssResult, - ruleName, - { +module.exports = stylelint.createPlugin( + ruleName, + (options, secondaryOptionObject) => { + return (root, result) => { + const validOptions = stylelint.utils.validateOptions(result, ruleName, { actual: options, possible: { caseStyle: [isStringOrRegExp], bemEntitiesDelimiters: [_.isObject], prefixes: [_.isString], }, - } - ) - - if (!validOptions) return - - const excludedNestedPropertyDeclarations = /[^(margin|padding):$]/i - - postcssRoot.walkRules(excludedNestedPropertyDeclarations, (rule) => { - const selector = getSelector(rule, postcssResult) - const splitedSelector = splitSelector(selector, options) - checkCase(splitedSelector, rule, postcssResult, ruleName, options) - }) + }) + if (!validOptions) return + + root.walkRules((rule) => { + const selector = getSelector(rule, result) + const splitedSelector = splitSelector(selector, options) + checkCase(splitedSelector, rule, result, ruleName, options) + }) + } } -}) +) module.exports.ruleName = ruleName diff --git a/packages/stylelint-plugin-mozaic/jest.config.js b/packages/stylelint-plugin-mozaic/jest.config.js deleted file mode 100644 index 32f1ca5ea..000000000 --- a/packages/stylelint-plugin-mozaic/jest.config.js +++ /dev/null @@ -1,5 +0,0 @@ -const config = { - preset: 'jest-preset-stylelint', -} - -module.exports = config diff --git a/packages/stylelint-plugin-mozaic/lib/getSelectors.js b/packages/stylelint-plugin-mozaic/lib/getSelectors.js index a3d89f3e4..04be220c7 100644 --- a/packages/stylelint-plugin-mozaic/lib/getSelectors.js +++ b/packages/stylelint-plugin-mozaic/lib/getSelectors.js @@ -1,13 +1,14 @@ -const resolvedNestedSelector = require('postcss-resolve-nested-selector') -const parser = require('postcss-selector-parser') +const stylelint = require('stylelint') +const resolveNestedSelector = require('postcss-resolve-nested-selector') +const parseSelector = require('postcss-selector-parser') const selector = (rule, result) => { const selector = rule.selector const selectorDef = [] - resolvedNestedSelector(selector, rule).forEach((resolvedSelector) => { + resolveNestedSelector(selector, rule).forEach((selectorB) => { try { - parser((parsedSelector) => { + parseSelector((parsedSelector) => { parsedSelector.each((selectorNode) => { selectorNode.walk((s) => { selectorDef.push({ @@ -16,12 +17,11 @@ const selector = (rule, result) => { }) }) }) - }).process(resolvedSelector) + }).process(selectorB) } catch (e) { result.warn('Cannot parse selector', {}) } }) - return selectorDef } diff --git a/packages/stylelint-plugin-mozaic/package-lock.json b/packages/stylelint-plugin-mozaic/package-lock.json new file mode 100644 index 000000000..13d856c98 --- /dev/null +++ b/packages/stylelint-plugin-mozaic/package-lock.json @@ -0,0 +1,2404 @@ +{ + "name": "stylelint-plugin-mozaic", + "version": "1.60.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "JSONStream": { + "version": "0.8.4", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz", + "integrity": "sha1-kWV9/m/4V0gwZhMrRhi2Lo9Ih70=", + "dev": true, + "requires": { + "jsonparse": "0.0.5", + "through": ">=2.2.7 <3" + } + }, + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", + "dev": true, + "requires": { + "co": "^4.6.0", + "json-stable-stringify": "^1.0.1" + } + }, + "ajv-keywords": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", + "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=", + "dev": true + }, + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", + "dev": true + }, + "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": "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" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-find-index": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", + "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "autoprefixer": { + "version": "6.7.7", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", + "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", + "dev": true, + "requires": { + "browserslist": "^1.7.6", + "caniuse-db": "^1.0.30000634", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^5.2.16", + "postcss-value-parser": "^3.2.3" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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 + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "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" + } + }, + "browserslist": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", + "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", + "dev": true, + "requires": { + "caniuse-db": "^1.0.30000639", + "electron-to-chromium": "^1.2.7" + } + }, + "camelcase": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", + "dev": true + }, + "camelcase-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", + "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", + "dev": true, + "requires": { + "camelcase": "^2.0.0", + "map-obj": "^1.0.0" + } + }, + "caniuse-db": { + "version": "1.0.30001015", + "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001015.tgz", + "integrity": "sha512-+Fqdu7tOxSD0HDs922QPxseHlwnUzdjLC1Oq32HZ1/LWrMfYNt8JaUWnoiIAR+G4fRzM3tdgc4Lrqo5Nx76UsQ==", + "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" + } + } + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "clone-regexp": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz", + "integrity": "sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw==", + "dev": true, + "requires": { + "is-regexp": "^1.0.0", + "is-supported-regexp-flag": "^1.0.0" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "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 + }, + "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-diff": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/color-diff/-/color-diff-0.1.7.tgz", + "integrity": "sha1-bbeM2UgqjkWdQIIer0tQMoPcuOI=", + "dev": true + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "colorguard": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/colorguard/-/colorguard-1.2.1.tgz", + "integrity": "sha512-qYVKTg626qpDg4/eBnPXidEPXn5+krbYqHVfyyEFBWV5z3IF4p44HKY/eE2t1ohlcrlIkDgHmFJMfQ8qMLnSFw==", + "dev": true, + "requires": { + "chalk": "^1.1.1", + "color-diff": "^0.1.3", + "log-symbols": "^1.0.2", + "object-assign": "^4.0.1", + "pipetteur": "^2.0.0", + "plur": "^2.0.0", + "postcss": "^5.0.4", + "postcss-reporter": "^1.2.1", + "text-table": "^0.2.0", + "yargs": "^1.2.6" + }, + "dependencies": { + "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" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.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 + }, + "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 + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "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 + }, + "cosmiconfig": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-1.1.0.tgz", + "integrity": "sha1-DeoPmATv37kp+7GxiOJVU+oFPTc=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "js-yaml": "^3.4.3", + "minimist": "^1.2.0", + "object-assign": "^4.0.1", + "os-homedir": "^1.0.1", + "parse-json": "^2.2.0", + "pinkie-promise": "^2.0.0", + "require-from-string": "^1.1.0" + } + }, + "css-color-names": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.3.tgz", + "integrity": "sha1-3gzvFvTYqoIioyDVttfpu62nufY=", + "dev": true + }, + "css-rule-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/css-rule-stream/-/css-rule-stream-1.1.0.tgz", + "integrity": "sha1-N4bnGYmD2WWibjGVfgkHjLt3BaI=", + "dev": true, + "requires": { + "css-tokenize": "^1.0.1", + "duplexer2": "0.0.2", + "ldjson-stream": "^1.2.1", + "through2": "^0.6.3" + } + }, + "css-tokenize": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/css-tokenize/-/css-tokenize-1.0.1.tgz", + "integrity": "sha1-RiXLHtohwUOFi3+B1oA8HSb8FL4=", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^1.0.33" + } + }, + "currently-unhandled": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", + "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", + "dev": true, + "requires": { + "array-find-index": "^1.0.1" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", + "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" + } + }, + "defined": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", + "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", + "dev": true + }, + "doiuse": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/doiuse/-/doiuse-2.6.0.tgz", + "integrity": "sha1-GJLRC2Gpo1at2/K2FJM+gfi7ODQ=", + "dev": true, + "requires": { + "browserslist": "^1.1.1", + "caniuse-db": "^1.0.30000187", + "css-rule-stream": "^1.1.0", + "duplexer2": "0.0.2", + "jsonfilter": "^1.1.2", + "ldjson-stream": "^1.2.1", + "lodash": "^4.0.0", + "multimatch": "^2.0.0", + "postcss": "^5.0.8", + "source-map": "^0.4.2", + "through2": "^0.6.3", + "yargs": "^3.5.4" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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 + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + } + } + }, + "source-map": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "dev": true, + "requires": { + "amdefine": ">=0.0.4" + } + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + }, + "yargs": { + "version": "3.32.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz", + "integrity": "sha1-AwiOnr+edWtpdRYR0qXvWRSCyZU=", + "dev": true, + "requires": { + "camelcase": "^2.0.1", + "cliui": "^3.0.3", + "decamelize": "^1.1.1", + "os-locale": "^1.4.0", + "string-width": "^1.0.1", + "window-size": "^0.1.4", + "y18n": "^3.2.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.0.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.1.tgz", + "integrity": "sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ==", + "dev": true + }, + "entities": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.0.0.tgz", + "integrity": "sha512-D9f7V0JSRwIxlRI2mjMqufDrRDnx8p+eEOz7aUM9SuvF8gsBzra0/6tbjl1m8eQHrZlYj6PxqE00hZ1SAIKPLw==", + "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 + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "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" + } + }, + "duplexer": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz", + "integrity": "sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=", + "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" + } + }, + "electron-to-chromium": { + "version": "1.3.322", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.322.tgz", + "integrity": "sha512-Tc8JQEfGQ1MzfSzI/bTlSr7btJv/FFO7Yh6tanqVmIWOuNCu6/D1MilIEgLtmWqIrsv+o4IjpLAhgMBr/ncNAA==", + "dev": true + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "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.16.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.16.2.tgz", + "integrity": "sha512-jYo/J8XU2emLXl3OLwfwtuFfuF2w6DYPs+xy9ZfVyPkDcrauu6LYrw/q2TyCtrbc/KUdCiC5e9UajRhgNkVopA==", + "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.1.4", + "is-regex": "^1.0.4", + "object-inspect": "^1.7.0", + "object-keys": "^1.1.1", + "string.prototype.trimleft": "^2.1.0", + "string.prototype.trimright": "^2.1.0" + }, + "dependencies": { + "object-inspect": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.7.0.tgz", + "integrity": "sha512-a7pEHdh1xKIAgTySUGgLMx/xwDZskN1Ud6egYYN3EdRW4ZMPNEDUTF+hwy2LUC+Bl+SyLXANnwz/jyh/qutKUw==", + "dev": true + } + } + }, + "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" + } + }, + "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 + }, + "execall": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz", + "integrity": "sha1-c9CQTjlbPKsGWLCNCewlMH8pu3M=", + "dev": true, + "requires": { + "clone-regexp": "^1.0.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "dev": true + }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "requires": { + "is-callable": "^1.1.3" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": 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 + }, + "gather-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz", + "integrity": "sha1-szmUr0V6gRVwDUEPMXczy+egkEs=", + "dev": true + }, + "get-stdin": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz", + "integrity": "sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g=", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "globjoin": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", + "integrity": "sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=", + "dev": true + }, + "graceful-fs": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", + "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==", + "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-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" + } + }, + "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 + }, + "hosted-git-info": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz", + "integrity": "sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==", + "dev": true + }, + "html-tags": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-1.2.0.tgz", + "integrity": "sha1-x43mW1Zjqll5id0rerSSANfk25g=", + "dev": true + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "dev": true, + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz", + "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + } + } + }, + "indent-string": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "dev": true, + "requires": { + "repeating": "^2.0.0" + } + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", + "dev": true + }, + "irregular-plurals": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.4.0.tgz", + "integrity": "sha1-LKmwM2UREYVUEvFr5dd8YqRYp2Y=", + "dev": true + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-callable": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "dev": true + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-finite": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", + "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "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" + } + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, + "requires": { + "has": "^1.0.1" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "dev": true + }, + "is-supported-regexp-flag": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz", + "integrity": "sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ==", + "dev": true + }, + "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-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "js-base64": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz", + "integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-stable-stringify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", + "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", + "dev": true, + "requires": { + "jsonify": "~0.0.0" + } + }, + "jsonfilter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/jsonfilter/-/jsonfilter-1.1.2.tgz", + "integrity": "sha1-Ie987cdRk4E8dZMulqmL4gW6WhE=", + "dev": true, + "requires": { + "JSONStream": "^0.8.4", + "minimist": "^1.1.0", + "stream-combiner": "^0.2.1", + "through2": "^0.6.3" + } + }, + "jsonify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", + "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", + "dev": true + }, + "jsonparse": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz", + "integrity": "sha1-MwVCrT8KZUZlt3jz6y2an6UHrGQ=", + "dev": true + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "dev": true, + "requires": { + "invert-kv": "^1.0.0" + } + }, + "ldjson-stream": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ldjson-stream/-/ldjson-stream-1.2.1.tgz", + "integrity": "sha1-kb7O2lrE7SsX5kn7d356v6AYnCs=", + "dev": true, + "requires": { + "split2": "^0.2.1", + "through2": "^0.6.1" + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "log-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "dev": true, + "requires": { + "chalk": "^1.0.0" + }, + "dependencies": { + "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" + } + }, + "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 + } + } + }, + "loud-rejection": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", + "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", + "dev": true, + "requires": { + "currently-unhandled": "^0.4.1", + "signal-exit": "^3.0.0" + } + }, + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", + "dev": true + }, + "meow": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", + "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", + "dev": true, + "requires": { + "camelcase-keys": "^2.0.0", + "decamelize": "^1.1.2", + "loud-rejection": "^1.0.0", + "map-obj": "^1.0.1", + "minimist": "^1.1.3", + "normalize-package-data": "^2.3.4", + "object-assign": "^4.0.1", + "read-pkg-up": "^1.0.1", + "redent": "^1.0.0", + "trim-newlines": "^1.0.0" + } + }, + "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" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "multimatch": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz", + "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", + "dev": true, + "requires": { + "array-differ": "^1.0.0", + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "minimatch": "^3.0.0" + } + }, + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + }, + "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-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "dev": true + }, + "normalize-selector": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz", + "integrity": "sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=", + "dev": true + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "dev": true + }, + "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 + }, + "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 + }, + "object-inspect": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.6.0.tgz", + "integrity": "sha512-GJzfBZ6DgDAmnuaM3104jR4s1Myxr3Y3zfIyN4z3UdqN69oSRacNK8UhnobDdC+7J2AHCjGwxQubNJfE70SXXQ==", + "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 + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onecolor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/onecolor/-/onecolor-3.1.0.tgz", + "integrity": "sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ==", + "dev": true + }, + "os-homedir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", + "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", + "dev": true + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pipetteur": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pipetteur/-/pipetteur-2.0.3.tgz", + "integrity": "sha1-GVV2CVno0aEcsqUOyD7sRwYz5J8=", + "dev": true, + "requires": { + "onecolor": "^3.0.4", + "synesthesia": "^1.0.1" + } + }, + "plur": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz", + "integrity": "sha1-dIJFLBoPUI4+NE6uwxLJHCncZVo=", + "dev": true, + "requires": { + "irregular-plurals": "^1.0.0" + } + }, + "postcss": { + "version": "8.4.19", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz", + "integrity": "sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==", + "requires": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + } + }, + "postcss-bem-linter": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/postcss-bem-linter/-/postcss-bem-linter-3.3.0.tgz", + "integrity": "sha512-qfgbgf6JmSpJEdglPOsx6GXkQg+dyHRGkflFoACZYL1dVFqoN5O3KhynuCvZFZ1DVfCFCuqEFgnwn8AyN+4qeQ==", + "requires": { + "minimatch": "^3.0.3", + "postcss": "^7.0.14", + "postcss-resolve-nested-selector": "^0.1.1" + }, + "dependencies": { + "postcss": { + "version": "7.0.36", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", + "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + } + } + }, + "postcss-less": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/postcss-less/-/postcss-less-0.14.0.tgz", + "integrity": "sha1-xjGwicbM5CK5oQ86lY0r7dOBkyQ=", + "dev": true, + "requires": { + "postcss": "^5.0.21" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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 + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "postcss-reporter": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-1.4.1.tgz", + "integrity": "sha1-wTbwpbFhkV83ndN2XGEHX357mvI=", + "dev": true, + "requires": { + "chalk": "^1.0.0", + "lodash": "^4.1.0", + "log-symbols": "^1.0.2", + "postcss": "^5.0.0" + }, + "dependencies": { + "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" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.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 + }, + "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 + } + } + }, + "postcss-resolve-nested-selector": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", + "integrity": "sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=" + }, + "postcss-scss": { + "version": "0.1.9", + "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-0.1.9.tgz", + "integrity": "sha1-dgbK/2S7SzS3YFq3SVdM942Iawg=", + "dev": true, + "requires": { + "postcss": "^5.1.0" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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 + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "postcss-selector-parser": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", + "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", + "dev": true, + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.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 + }, + "read-file-stdin": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz", + "integrity": "sha1-JezP86FTtoCa+ssj7hU4fbng7mE=", + "dev": true, + "requires": { + "gather-stream": "^1.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "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" + } + }, + "redent": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", + "dev": true, + "requires": { + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" + } + }, + "repeating": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", + "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", + "dev": true, + "requires": { + "is-finite": "^1.0.0" + } + }, + "require-from-string": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz", + "integrity": "sha1-UpyczvJzgK3+yaL5ZbZJu+5jZBg=", + "dev": true + }, + "resolve": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.13.1.tgz", + "integrity": "sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", + "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=", + "dev": true + }, + "resumer": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz", + "integrity": "sha1-8ej0YeQGS6Oegq883CqMiT0HZ1k=", + "dev": true, + "requires": { + "through": "~2.3.4" + } + }, + "safe-buffer": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", + "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==", + "dev": true + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "slice-ansi": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", + "dev": true + }, + "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-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + }, + "spdx-correct": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", + "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", + "dev": true + }, + "specificity": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/specificity/-/specificity-0.2.1.tgz", + "integrity": "sha1-OnBHwqF581Ni45kHRc6lOfFRYbg=", + "dev": true + }, + "split2": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/split2/-/split2-0.2.1.tgz", + "integrity": "sha1-At2smtwD7Au3jBKC7Aecpuha6QA=", + "dev": true, + "requires": { + "through2": "~0.6.1" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "stream-combiner": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz", + "integrity": "sha1-rsjLrBd7Vrb0+kec7YwZEs7lKFg=", + "dev": true, + "requires": { + "duplexer": "~0.1.1", + "through": "~2.3.4" + } + }, + "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" + } + }, + "string.prototype.trim": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.1.2.tgz", + "integrity": "sha1-0E3iyJ4Tf019IG8Ia17S+ua+jOo=", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.5.0", + "function-bind": "^1.0.2" + } + }, + "string.prototype.trimleft": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.trimleft/-/string.prototype.trimleft-2.1.0.tgz", + "integrity": "sha512-FJ6b7EgdKxxbDxc79cOlok6Afd++TTs5szo+zJTUyow3ycrRfJVE2pq3vcN53XexvKZu/DJMDfeI/qMiZTrjTw==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.1" + } + }, + "string.prototype.trimright": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/string.prototype.trimright/-/string.prototype.trimright-2.1.0.tgz", + "integrity": "sha512-fXZTSV55dNBwv16uw+hh5jkghxSnc5oHq+5K/gXgizHwAvMetdAJlHqqoFC1FSDVPYWLkAKl2cxpUT41sV7nSg==", + "dev": true, + "requires": { + "define-properties": "^1.1.3", + "function-bind": "^1.1.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 + }, + "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" + } + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + }, + "strip-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", + "dev": true, + "requires": { + "get-stdin": "^4.0.1" + }, + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", + "dev": true + } + } + }, + "stylehacks": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-2.3.2.tgz", + "integrity": "sha1-ZMg+BDimjJ7fRJ6MVSp9mrYAmws=", + "dev": true, + "requires": { + "browserslist": "^1.1.3", + "chalk": "^1.1.1", + "log-symbols": "^1.0.2", + "minimist": "^1.2.0", + "plur": "^2.1.2", + "postcss": "^5.0.18", + "postcss-reporter": "^1.3.3", + "postcss-selector-parser": "^2.0.0", + "read-file-stdin": "^0.2.1", + "text-table": "^0.2.0", + "write-file-stdout": "0.0.2" + }, + "dependencies": { + "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" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.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 + }, + "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 + } + } + }, + "stylelint": { + "version": "6.9.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-6.9.0.tgz", + "integrity": "sha1-LSOHCXwetU5uMjuMSGdyXaXgIUg=", + "dev": true, + "requires": { + "autoprefixer": "^6.0.0", + "balanced-match": "^0.4.0", + "chalk": "^1.1.1", + "colorguard": "^1.2.0", + "cosmiconfig": "^1.1.0", + "doiuse": "^2.3.0", + "execall": "^1.0.0", + "get-stdin": "^5.0.0", + "globby": "^5.0.0", + "globjoin": "^0.1.2", + "html-tags": "^1.1.1", + "htmlparser2": "^3.9.0", + "lodash": "^4.0.0", + "log-symbols": "^1.0.2", + "meow": "^3.3.0", + "multimatch": "^2.1.0", + "normalize-selector": "^0.2.0", + "postcss": "^5.0.20", + "postcss-less": "^0.14.0", + "postcss-reporter": "^1.3.0", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-scss": "^0.1.3", + "postcss-selector-parser": "^2.0.0", + "postcss-value-parser": "^3.1.1", + "resolve-from": "^2.0.0", + "specificity": "^0.2.1", + "string-width": "^1.0.1", + "stylehacks": "^2.3.0", + "sugarss": "^0.1.2", + "svg-tags": "^1.0.0", + "table": "^3.7.8" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "balanced-match": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", + "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=", + "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" + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + }, + "dependencies": { + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.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 + }, + "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 + } + } + }, + "stylelint-test-rule-tape": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/stylelint-test-rule-tape/-/stylelint-test-rule-tape-0.2.0.tgz", + "integrity": "sha1-NRTszoygrIq78imuSECgl5ZIqsg=", + "dev": true, + "requires": { + "stylelint": "^6.2.0", + "tape": "^4.5.1" + } + }, + "sugarss": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/sugarss/-/sugarss-0.1.6.tgz", + "integrity": "sha1-/jrA4eBygq7x3oSoC3I4b/Tn6jc=", + "dev": true, + "requires": { + "postcss": "^5.2.0" + }, + "dependencies": { + "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" + }, + "dependencies": { + "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 + } + } + }, + "has-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", + "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", + "dev": true + }, + "postcss": { + "version": "5.2.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", + "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "js-base64": "^2.1.9", + "source-map": "^0.5.6", + "supports-color": "^3.2.3" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "supports-color": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", + "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", + "dev": true, + "requires": { + "has-flag": "^1.0.0" + } + } + } + }, + "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" + } + }, + "svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=", + "dev": true + }, + "synesthesia": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/synesthesia/-/synesthesia-1.0.1.tgz", + "integrity": "sha1-XvlepUjA1cbm+btLDQcx3/hkp3c=", + "dev": true, + "requires": { + "css-color-names": "0.0.3" + } + }, + "table": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", + "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=", + "dev": true, + "requires": { + "ajv": "^4.7.0", + "ajv-keywords": "^1.0.0", + "chalk": "^1.1.1", + "lodash": "^4.0.0", + "slice-ansi": "0.0.4", + "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 + }, + "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" + } + }, + "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" + }, + "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" + } + } + } + }, + "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 + } + } + }, + "tape": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/tape/-/tape-4.11.0.tgz", + "integrity": "sha512-yixvDMX7q7JIs/omJSzSZrqulOV51EC9dK8dM0TzImTIkHWfe2/kFyL5v+d9C+SrCMaICk59ujsqFAVidDqDaA==", + "dev": true, + "requires": { + "deep-equal": "~1.0.1", + "defined": "~1.0.0", + "for-each": "~0.3.3", + "function-bind": "~1.1.1", + "glob": "~7.1.4", + "has": "~1.0.3", + "inherits": "~2.0.4", + "minimist": "~1.2.0", + "object-inspect": "~1.6.0", + "resolve": "~1.11.1", + "resumer": "~0.0.0", + "string.prototype.trim": "~1.1.2", + "through": "~2.3.8" + }, + "dependencies": { + "resolve": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz", + "integrity": "sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "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" + }, + "dependencies": { + "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" + } + } + } + }, + "trim-newlines": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", + "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", + "dev": true + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "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" + } + }, + "window-size": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz", + "integrity": "sha1-+OGqHuWlPsW/FR/6CXQqatdpeHY=", + "dev": true + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write-file-stdout": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz", + "integrity": "sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE=", + "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": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yargs": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz", + "integrity": "sha1-BU3oth8i7v23IHBZ6u+da4P7kxo=", + "dev": true + } + } +} diff --git a/packages/stylelint-plugin-mozaic/package.json b/packages/stylelint-plugin-mozaic/package.json index 7325a26e2..2299d066d 100644 --- a/packages/stylelint-plugin-mozaic/package.json +++ b/packages/stylelint-plugin-mozaic/package.json @@ -4,16 +4,17 @@ "description": "A set of rules to enforce Mozaic CSS architecture", "main": "index.js", "scripts": { - "test": "jest" + "test": "node test" }, "keywords": [ - "stylelint", + "styleling", "stylelint-plugin", "css", "linter", "bem", "mozaic" ], + "author": "Mohamed Mokhtari ", "license": "MIT", "dependencies": { "lodash": "^4.17.21", @@ -21,9 +22,6 @@ "postcss-bem-linter": "^3.3.0" }, "devDependencies": { - "jest": "^28.1.1", - "jest-preset-stylelint": "^5.0.4", - "postcss": "^8.4.14", - "stylelint": "^14.9.1" + "stylelint-test-rule-tape": "^0.2.0" } } diff --git a/packages/stylelint-plugin-mozaic/index.test.js b/packages/stylelint-plugin-mozaic/test/index.js similarity index 81% rename from packages/stylelint-plugin-mozaic/index.test.js rename to packages/stylelint-plugin-mozaic/test/index.js index bb66c1f05..c8bd65506 100644 --- a/packages/stylelint-plugin-mozaic/index.test.js +++ b/packages/stylelint-plugin-mozaic/test/index.js @@ -1,9 +1,9 @@ -const { ruleName } = require('.') +var testRule = require('stylelint-test-rule-tape') +var mozaicBemPattern = require('../index.js') // kebab-case test -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'kebab-case', bemEntitiesDelimiters: { @@ -14,6 +14,8 @@ testRule({ prefixes: ['mc-', 'ml-', 'mu-', 'mt-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-block-name__element-name {}`, @@ -31,7 +33,7 @@ testRule({ code: `.ml-Container {}`, message: 'Invalid class syntax: ".ml-Container" should be "kebab-case" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 1, column: 1, @@ -43,16 +45,15 @@ testRule({ `, message: 'Invalid class syntax: ".mcBlock-name__element-name" should be "kebab-case" (' + - ruleName + + mozaicBemPattern.ruleName + ')', }, ], }) // test camelCase -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'camelCase', bemEntitiesDelimiters: { @@ -63,6 +64,8 @@ testRule({ prefixes: ['mc-', 'ml-', 'mu-', 'mt-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-blockName__elementName {}`, @@ -80,7 +83,7 @@ testRule({ code: `.ml-Container {}`, message: 'Invalid class syntax: ".ml-Container" should be "camelCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 1, column: 1, @@ -92,16 +95,15 @@ testRule({ `, message: 'Invalid class syntax: ".mc-block-name__element-name" should be "camelCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', }, ], }) // test snake_case -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'snake_case', bemEntitiesDelimiters: { @@ -112,6 +114,8 @@ testRule({ prefixes: ['mc-', 'ml-', 'mu-', 'mt-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-block_same__element_name {}`, @@ -129,7 +133,7 @@ testRule({ code: `.ml-Container {}`, message: 'Invalid class syntax: ".ml-Container" should be "snake_case" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 1, column: 1, @@ -141,16 +145,15 @@ testRule({ `, message: 'Invalid class syntax: ".mc-block-name__element-name" should be "snake_case" (' + - ruleName + + mozaicBemPattern.ruleName + ')', }, ], }) // test PascalCase -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'PascalCase', bemEntitiesDelimiters: { @@ -161,6 +164,8 @@ testRule({ prefixes: ['mc-', 'ml-', 'mu-', 'mt-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-BlockSame__ElementName {}`, @@ -178,7 +183,7 @@ testRule({ code: `.ml-container {}`, message: 'Invalid class syntax: ".ml-container" should be "PascalCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 1, column: 1, @@ -190,16 +195,15 @@ testRule({ `, message: 'Invalid class syntax: ".mc-block-name__element-name" should be "PascalCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', }, ], }) // test prefixes -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'PascalCase', bemEntitiesDelimiters: { @@ -210,6 +214,8 @@ testRule({ prefixes: ['mc-', 'ML-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-BlockSame__ElementName {}`, @@ -227,7 +233,7 @@ testRule({ code: `.mm-Container {}`, message: 'Invalid class syntax: ".mm-Container" should be "PascalCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 1, column: 1, @@ -239,16 +245,15 @@ testRule({ `, message: 'Invalid class syntax: ".Ml-block-name__element-name" should be "PascalCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', }, ], }) // test case using regex -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: /^[A-Z]+(_[A-Z]+)*$/, bemEntitiesDelimiters: { @@ -259,6 +264,8 @@ testRule({ prefixes: ['mc-', 'ML-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-BLOCK_SAME__ELEMENT_NAME {}`, @@ -270,7 +277,7 @@ testRule({ code: `.mc-container {}`, message: 'Invalid class syntax: ".mc-container" should be "/^[A-Z]+(_[A-Z]+)*$/" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 1, column: 1, @@ -279,9 +286,8 @@ testRule({ }) // test stylelint-disable -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'camelCase', bemEntitiesDelimiters: { @@ -292,6 +298,8 @@ testRule({ prefixes: ['mc-', 'ml-', 'mu-', 'mt-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-blockName__elementName {} @@ -309,7 +317,7 @@ testRule({ `, message: 'Invalid class syntax: ".mc-block-Name__element-Name" should be "camelCase" (' + - ruleName + + mozaicBemPattern.ruleName + ')', line: 2, }, @@ -317,9 +325,8 @@ testRule({ }) // test mc-my-call--small\@from-m -testRule({ - plugins: ['.'], - ruleName, +testRule(mozaicBemPattern.rule, { + ruleName: mozaicBemPattern.ruleName, config: { caseStyle: 'kebab-case', bemEntitiesDelimiters: { @@ -330,6 +337,8 @@ testRule({ prefixes: ['mc-', 'ml-', 'mu-', 'mt-'], }, + skipBasicChecks: true, + accept: [ { code: `.mc-my-call--small\@from-m {} `, diff --git a/packages/styles/CHANGELOG.md b/packages/styles/CHANGELOG.md index 47faa2340..2252d3746 100644 --- a/packages/styles/CHANGELOG.md +++ b/packages/styles/CHANGELOG.md @@ -354,22 +354,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline - **component/option-card:** increase CSS specificity on the input element ([#1033](https://github.com/adeo/mozaic-design-system/issues/1033)) ([37f1704](https://github.com/adeo/mozaic-design-system/commit/37f170417b0df864638cc3dc35c52f050c8147f0)) - **component/pswdinput:** increase CSS specificity on the input[type=password"] element ([#1032](https://github.com/adeo/mozaic-design-system/issues/1032)) ([9cbed7c](https://github.com/adeo/mozaic-design-system/commit/9cbed7c34a3d37be0bc15c08acfa3b59c6684e06)) -# [2.0.0-rc.0](https://github.com/adeo/mozaic-design-system/compare/v1.24.2...v2.0.0-rc.0) (2022-02-08) - - -### Bug Fixes - -* **comment:** add comment in option card ([459fb53](https://github.com/adeo/mozaic-design-system/commit/459fb53c8c783abc9a4a57890fa89e20318b43a2)) - - -### Features - -* **pattern/colors:** add new LM colours ([#999](https://github.com/adeo/mozaic-design-system/issues/999)) ([8854fb8](https://github.com/adeo/mozaic-design-system/commit/8854fb89fda1ecd3d9be10b9fcc7aa102fdc7102)) - - - - - ## [1.24.1](https://github.com/adeo/mozaic-design-system/compare/v1.24.0...v1.24.1) (2022-02-02) ### Bug Fixes diff --git a/packages/styles/components/_c.accordion.scss b/packages/styles/components/_c.accordion.scss index 82cf5a777..ecfa3daec 100644 --- a/packages/styles/components/_c.accordion.scss +++ b/packages/styles/components/_c.accordion.scss @@ -6,6 +6,7 @@ background-color: $color-grey-000; border-bottom: get-border(s) solid $color-font-light; + @include set-font-face(); @include set-accordion-size($accordion-default-size, $parent); // TODO: @@ -14,7 +15,7 @@ &__label { @include set-font-weight("semi-bold"); - @include set-focus-floating-base() { + @include set-focus-floating-base { top: -(math.div($mu025, 2)); right: -(math.div($mu025, 2)); bottom: -3px; @@ -93,7 +94,7 @@ &:focus { ~ #{$parent}__label { - @include set-focus-floating() { + @include set-focus-floating { box-shadow: 0 0 0 $size-focus-border-thin $color-focus-border; } } @@ -141,7 +142,7 @@ background-position: right $mu050 center; background-repeat: no-repeat; background-color: transparent; - color: currentcolor; + color: currentColor; font-family: inherit; font-size: inherit; font-weight: inherit; @@ -154,7 +155,7 @@ width: 100%; &:focus { - @include set-focus-floating() { + @include set-focus-floating { box-shadow: 0 0 0 $size-focus-border-thin $color-focus-border; } } @@ -208,7 +209,7 @@ @each $size, $props in $accordion-sizes { &--#{$size} { - @if $size != "m" { + @if ($size != "m") { @include set-accordion-size($props, $parent); } } diff --git a/packages/styles/components/_c.badge.scss b/packages/styles/components/_c.badge.scss index df0a026ee..bc4b72614 100644 --- a/packages/styles/components/_c.badge.scss +++ b/packages/styles/components/_c.badge.scss @@ -1,12 +1,12 @@ /* mqp:start */ .mc-badge { @include set-badge-base(); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); @include set-font-scale("04", "m"); @include set-badge-theme(get-token(color, badge, "info")); @each $name, $props in $badges { - @if $name != "info" { + @if ($name != "info") { &--#{$name} { @include set-badge-theme($props); } diff --git a/packages/styles/components/_c.breadcrumb.scss b/packages/styles/components/_c.breadcrumb.scss index aae05f96f..5b512b646 100644 --- a/packages/styles/components/_c.breadcrumb.scss +++ b/packages/styles/components/_c.breadcrumb.scss @@ -4,8 +4,44 @@ @include set-font-face(); color: $color-font-darker; - padding-bottom: magic-unit-rem(0.9375, "true"); - padding-top: magic-unit-rem(0.9375, "true"); + padding: magic-unit-rem(0.9375, "true") 0 magic-unit-rem(0.9375, "true") + magic-unit-rem(1.125, "true"); + + @include set-from-screen("s-large") { + padding-left: $mu125; + } + + @include set-from-screen("s-xlarge") { + padding-left: magic-unit-rem(1.375, "true"); + } + + @include set-from-screen("m") { + padding-left: $mu200; + } + + @include set-from-screen("m-medium") { + padding-left: magic-unit-rem(2.125, "true"); + } + + @include set-from-screen("l") { + padding-left: $mu300; + } + + @include set-from-screen("xl") { + padding-left: $mu200; + } + + @include set-from-screen("xl-medium") { + padding-left: $mu700; + } + + @include set-from-screen("xl-large") { + padding-left: $mu200; + } + + @include set-from-screen("xxl") { + padding-left: $mu250; + } &__container { @include unstyle-list(); @@ -33,13 +69,21 @@ } &:not(:first-child) { - background-image: url("#{inline-icons('arrow-right-16', $color-breadcrumb-arrow)}"); + background-image: url( + inline-icons( + "arrow-right-16", + $color-breadcrumb-arrow + )); } &.is-active, &:only-child { @media screen and (max-width: ($screen-l - 1)) { - background-image: url("#{inline-icons('arrow-left-16', $color-breadcrumb-arrow)}"); + background-image: url( + inline-icons( + "arrow-left-16", + $color-breadcrumb-arrow + )); } } } @@ -55,24 +99,33 @@ &:focus, &:hover, &:visited { - color: currentcolor; + color: currentColor; } } } &--dark { + background-color: $color-grey-700; color: $color-font-lightest; #{$parent} { &__item { &:not(:first-child) { - background-image: url("#{inline-icons('arrow-right-16', $color-breadcrumb-arrow-invert)}"); + background-image: url( + inline-icons( + "arrow-right-16", + $color-breadcrumb-arrow-invert + )); } &.is-active, &:only-child { @media screen and (max-width: ($screen-l - 1)) { - background-image: url("#{inline-icons('arrow-left-16', $color-breadcrumb-arrow-invert)}"); + background-image: url( + inline-icons( + "arrow-left-16", + $color-breadcrumb-arrow-invert + )); } } } diff --git a/packages/styles/components/_c.button.scss b/packages/styles/components/_c.button.scss index a2cbf8d3f..555f83a43 100644 --- a/packages/styles/components/_c.button.scss +++ b/packages/styles/components/_c.button.scss @@ -2,16 +2,18 @@ .mc-button { @include unstyle-button(); @include set-button-theme(get-token(color, button, "solid"), true); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); @include set-button-size($button-medium); @include set-button-layout(); align-items: stretch; box-sizing: border-box; - fill: currentcolor; + fill: currentColor; &:focus { - @include set-shadow-focus(); + @include add-demo-state-class { + @include set-shadow-focus(); + } } // all sizes @@ -78,7 +80,7 @@ } @each $name, $props in $buttons { - @if $name != "solid" { + @if ($name != "solid") { &--#{$name} { @include set-button-theme($props); } diff --git a/packages/styles/components/_c.card.scss b/packages/styles/components/_c.card.scss index 128841fde..89d3ae38f 100644 --- a/packages/styles/components/_c.card.scss +++ b/packages/styles/components/_c.card.scss @@ -38,7 +38,7 @@ } @each $ratio, $size in $card-visual-ratios { - @if $ratio != "4x3" { + @if ($ratio != "4x3") { &--#{$ratio}::before { padding-top: $size; } diff --git a/packages/styles/components/_c.checkbox.scss b/packages/styles/components/_c.checkbox.scss index 83ff4b855..2749bd95b 100644 --- a/packages/styles/components/_c.checkbox.scss +++ b/packages/styles/components/_c.checkbox.scss @@ -16,7 +16,7 @@ } &__input { - @include reset-input(); + @include reset-input; min-width: $checkbox-min-width; min-height: $checkbox-min-height; @@ -37,18 +37,22 @@ } &:hover { - border-color: $color-input-hover-border; - - &::-ms-check { + @include add-demo-state-class { border-color: $color-input-hover-border; + + &::-ms-check { + border-color: $color-input-hover-border; + } } } &:focus { - @include set-shadow-focus(); - - &::-ms-check { + @include add-demo-state-class { @include set-shadow-focus(); + + &::-ms-check { + @include set-shadow-focus(); + } } } @@ -60,7 +64,11 @@ } &:checked { - background-image: url("#{inline-icons('checkmark-16', $color-input-checked-icon)}"); + background-image: url( + inline-icons( + "checkmark-16", + $color-input-checked-icon + )); background-position: center center; &::-ms-check { @@ -78,7 +86,11 @@ } &:indeterminate { - background-image: url("#{inline-icons('control-less-16', $color-input-checked-icon)}"); + background-image: url( + inline-icons( + "control-less-16", + $color-input-checked-icon + )); } &:disabled { @@ -92,11 +104,19 @@ } &:checked { - background-image: url("#{inline-icons('checkmark-16', $color-input-disabled-icon)}"); + background-image: url( + inline-icons( + "checkmark-16", + $color-input-disabled-icon + )); } &:indeterminate { - background-image: url("#{inline-icons('control-less-16', $color-input-disabled-icon)}"); + background-image: url( + inline-icons( + "control-less-16", + $color-input-disabled-icon + )); } & + #{$parent}__label { @@ -112,10 +132,12 @@ } &:hover { - border-color: $color-input-invalid-hover-border; - - &::-ms-check { + @include add-demo-state-class { border-color: $color-input-invalid-hover-border; + + &::-ms-check { + border-color: $color-input-invalid-hover-border; + } } } } diff --git a/packages/styles/components/_c.datatable.scss b/packages/styles/components/_c.datatable.scss index f67e77db4..6eeb757e0 100644 --- a/packages/styles/components/_c.datatable.scss +++ b/packages/styles/components/_c.datatable.scss @@ -4,7 +4,7 @@ $parent: get-parent-selector(&); $border-size: 0.0625rem; - @include set-font-family(); + @include set-font-family; box-sizing: border-box; @@ -84,11 +84,11 @@ } } - /* stylelint-disable no-descending-specificity */ &__row { $datatable-row: &; - &-parent:not(.mc-datatable__row-parent--expanded) + .mc-datatable__row-expandable { + &-parent:not(.mc-datatable__row-parent--expanded) + + .mc-datatable__row-expandable { height: 0; .mc-datatable__row-inner { @@ -97,7 +97,8 @@ } } - &-parent.mc-datatable__row-parent--expanded + .mc-datatable__row-expandable { + &-parent.mc-datatable__row-parent--expanded + + .mc-datatable__row-expandable { .mc-datatable__row-inner { max-height: 100%; } @@ -130,7 +131,6 @@ } } } - /* stylelint-enable no-descending-specificity */ &__cell { &-checkbox { @@ -182,7 +182,7 @@ // size @each $size, $props in $datatable-sizes { - @if $size != "m" { + @if ($size != "m") { &--#{$size} { #{$parent} { @include set-datatable-size($props); @@ -192,7 +192,6 @@ } // sticky - /* stylelint-disable no-duplicate-selectors */ &--sticky, &--sticky-header { #{$parent} { @@ -223,7 +222,6 @@ } } } - /* stylelint-enable no-duplicate-selectors */ &--sticky { #{$parent} { diff --git a/packages/styles/components/_c.divider.scss b/packages/styles/components/_c.divider.scss index 41531d04f..dce1a2a2a 100644 --- a/packages/styles/components/_c.divider.scss +++ b/packages/styles/components/_c.divider.scss @@ -6,7 +6,7 @@ border-#{$position}: $divider-border-size-s solid $color-divider-default; @each $name, $props in $dividers { - @if $name != "default" { + @if ($name != "default") { &--#{$name} { border-#{$position}-color: $props; } @@ -14,7 +14,7 @@ } @each $size, $props in $divider-sizes { - @if $size != "s" { + @if ($size != "s") { &--#{$size} { border-#{$position}-width: $props; } diff --git a/packages/styles/components/_c.dropdown.scss b/packages/styles/components/_c.dropdown.scss index 92ce69729..b6c01f458 100644 --- a/packages/styles/components/_c.dropdown.scss +++ b/packages/styles/components/_c.dropdown.scss @@ -36,7 +36,7 @@ white-space: nowrap; &.is-open { - background-image: url("#{inline-icons('arrow-top-16', $color-grey-999)}"); + background-image: url(inline-icons("arrow-top-16", $color-grey-999)); } // invalid state diff --git a/packages/styles/components/_c.file-uploader.scss b/packages/styles/components/_c.file-uploader.scss index 1b07d4003..f59b3c21c 100644 --- a/packages/styles/components/_c.file-uploader.scss +++ b/packages/styles/components/_c.file-uploader.scss @@ -8,7 +8,7 @@ } &__label { - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); @include set-button-layout(); @include set-button-size(map-get($button-sizes, "m")); @include set-button-theme(get-token(color, button, "bordered")); @@ -25,34 +25,41 @@ height: $mu150; display: flex; align-items: center; - background-color: transparent; - background-image: url("#{inline-icons('upload-24', $color-button-bordered-border)}"); - background-repeat: no-repeat; + background: transparent + url(inline-icons("upload-24", $color-button-bordered-border)) no-repeat; background-size: $mu150; margin-right: $mu050; margin-left: -$mu050; } :focus + & { - @include set-shadow-focus(); + @include add-demo-state-class { + @include set-shadow-focus(); + } } :hover + & { - @include set-button-theme(get-token(color, button, "bordered", "hover")); + @include add-demo-state-class { + @include set-button-theme( + get-token(color, button, "bordered", "hover") + ); + } } :disabled + & { - @include set-button-theme( - get-token(color, button, "bordered", "disabled") - ); - - border-color: transparent; - cursor: not-allowed; - - &::before { - background-color: transparent; - background-image: url("#{inline-icons('upload-24', $color-button-bordered-disabled-font)}"); - background-repeat: no-repeat; + @include add-demo-state-class { + @include set-button-theme( + get-token(color, button, "bordered", "disabled") + ); + + border-color: transparent; + cursor: not-allowed; + + &::before { + background: transparent + url(inline-icons("upload-24", $color-button-bordered-disabled-font)) + no-repeat; + } } } } @@ -64,6 +71,8 @@ } &__file { + @include set-font-face("regular"); + align-items: center; background: $color-fileuploader-files-list; box-sizing: content-box; @@ -100,11 +109,19 @@ } &--is-valid &-icon { - background-image: url("#{inline-icons('valid-24', $color-fileuploader-valid)}"); + background-image: url( + inline-icons( + "valid-24", + $color-fileuploader-valid + )); } &--is-invalid &-icon { - background-image: url("#{inline-icons('alert-24', $color-fileuploader-alert)}"); + background-image: url( + inline-icons( + "alert-24", + $color-fileuploader-alert + )); } &--is-invalid &-message { @@ -135,9 +152,8 @@ content: ""; width: $mu150; height: $mu150; - background-color: transparent; - background-image: url("#{inline-icons('delete-24', $color-fileuploader-font)}"); - background-repeat: no-repeat; + background: transparent + url(inline-icons("delete-24", $color-fileuploader-font)) no-repeat; background-size: $mu150; display: block; } diff --git a/packages/styles/components/_c.flag.scss b/packages/styles/components/_c.flag.scss index 93c1c6ca1..f91a9f0e9 100644 --- a/packages/styles/components/_c.flag.scss +++ b/packages/styles/components/_c.flag.scss @@ -3,11 +3,11 @@ $parent: get-parent-selector(&); @include set-flag-base($parent); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); @include set-flag-theme($parent, get-token(color, flag, "solid")); @each $name, $props in $flags { - @if $name != "solid" { + @if ($name != "solid") { &--#{$name} { @include set-flag-theme($parent, $props); } diff --git a/packages/styles/components/_c.layer.scss b/packages/styles/components/_c.layer.scss index 6c07e0f6c..b572e1219 100644 --- a/packages/styles/components/_c.layer.scss +++ b/packages/styles/components/_c.layer.scss @@ -3,6 +3,7 @@ .mc-layer { $parent: get-parent-selector(&); + @include set-font-face(); @include set-dialog-base(); display: flex; @@ -118,9 +119,8 @@ @include set-focus-floating-base(); align-self: flex-start; - background-color: transparent; - background-image: url("#{inline-icons('control-cross-32', $color-grey-500)}"); - background-repeat: no-repeat; + background: transparent + url(inline-icons("control-cross-32", $color-dialog-close)) no-repeat; background-size: contain; cursor: pointer; height: $mu200; @@ -242,4 +242,9 @@ transition: visibility 0s linear 0s, transform 0.4s; visibility: visible; } + + // Overlay + @at-root #{$parent}-overlay { + @include set-page-overlay(); + } } diff --git a/packages/styles/components/_c.left-icon-input.scss b/packages/styles/components/_c.left-icon-input.scss index 938d83644..028e64a7e 100644 --- a/packages/styles/components/_c.left-icon-input.scss +++ b/packages/styles/components/_c.left-icon-input.scss @@ -17,7 +17,7 @@ @each $size, $props in $input-icon-sizes { &--#{$size} { - @if $size != "m" { + @if ($size != 'm') { @include set-input-icon-size($props, $parent); } } diff --git a/packages/styles/components/_c.links.scss b/packages/styles/components/_c.links.scss index 9db7c33c1..6e50c64b4 100644 --- a/packages/styles/components/_c.links.scss +++ b/packages/styles/components/_c.links.scss @@ -12,13 +12,13 @@ &__icon { display: block; height: $mu100; - fill: currentcolor; + fill: currentColor; flex-shrink: 0; width: $mu100; } @each $name, $props in $links-tokens { - @if $name != "dark" { + @if ($name != "dark") { &--#{$name} { @include set-link-theme($props); } diff --git a/packages/styles/components/_c.loader.scss b/packages/styles/components/_c.loader.scss index b12acf474..cc1f3d6e3 100644 --- a/packages/styles/components/_c.loader.scss +++ b/packages/styles/components/_c.loader.scss @@ -25,20 +25,19 @@ stroke-dasharray: 1, 200; stroke-dashoffset: 0; stroke-linecap: round; - animation: - animate-dash-loader $animation-duration-loader ease-in-out + animation: animate-dash-loader $animation-duration-loader ease-in-out infinite; } &__text { @include set-font-scale("05", "m"); - color: currentcolor; + color: currentColor; } @each $size, $props in $loader-sizes { &--#{$size} { - @if $size != "m" { + @if ($size != "m") { @include set-loader-size($props, $parent); } } @@ -46,7 +45,7 @@ @each $theme, $color in $loader-theme { &--#{$theme} { - @if $theme != "primary" { + @if ($theme != "primary") { @include set-loader-theme($color, $parent); } } @@ -57,7 +56,6 @@ 0% { transform: rotate(0deg); } - 100% { transform: rotate(270deg); } @@ -68,12 +66,10 @@ stroke-dasharray: 1, 200; stroke-dashoffset: 0; } - 50% { stroke-dasharray: 89, 200; stroke-dashoffset: -35px; } - 100% { stroke-dasharray: 89, 200; stroke-dashoffset: -124px; diff --git a/packages/styles/components/_c.modal.scss b/packages/styles/components/_c.modal.scss index 24a54a101..bb5ac6aea 100644 --- a/packages/styles/components/_c.modal.scss +++ b/packages/styles/components/_c.modal.scss @@ -34,9 +34,7 @@ max-height: 100%; position: relative; transform: translateY(-25%); - transition: - visibility 0s linear 0.4s, - transform 0.4s ease, + transition: visibility 0s linear 0.4s, transform 0.4s ease, opacity 0.4s ease; visibility: hidden; width: 100%; @@ -66,9 +64,7 @@ opacity: 1; pointer-events: all; transform: translateY(0); - transition: - visibility 0s linear 0s, - transform 0.4s ease, + transition: visibility 0s linear 0s, transform 0.4s ease, opacity 0.4s ease; visibility: visible; } @@ -120,9 +116,8 @@ @include set-focus-floating-base(); align-self: flex-start; - background-color: transparent; - background-image: url("#{inline-icons('control-cross-32', $color-dialog-close)}"); - background-repeat: no-repeat; + background: transparent + url(inline-icons("control-cross-32", $color-dialog-close)) no-repeat; background-size: contain; cursor: pointer; height: $mu200; diff --git a/packages/styles/components/_c.notification.scss b/packages/styles/components/_c.notification.scss index ec1e11593..1e8a0f69f 100644 --- a/packages/styles/components/_c.notification.scss +++ b/packages/styles/components/_c.notification.scss @@ -2,10 +2,11 @@ .mc-notification { $parent: get-parent-selector(&); + @include set-font-face(); @include set-border-radius(); @include set-flexy(); @include set-notification-size($notification-default-size); - @include set-notification-type("information"); + @include set-notification-type('information'); box-sizing: border-box; color: $color-font-darkest; @@ -13,7 +14,7 @@ &::before { background-color: transparent; background-repeat: no-repeat; - content: ""; + content: ''; display: block; } @@ -28,12 +29,12 @@ } &__title { - @include set-font-weight("semi-bold"); - @include set-font-scale("05"); + @include set-font-face('semi-bold'); + @include set-font-scale('05'); } &__message { - @include set-font-scale("04"); + @include set-font-scale('04'); } &__footer { @@ -42,14 +43,14 @@ flex-direction: column; margin-top: $mu100; - @include set-from-screen("l") { + @include set-from-screen('l') { flex-direction: row; } } // TODO: to be removed later &__link { - @include set-font-scale("04", "m"); + @include set-font-scale('04', 'm'); margin-top: $mu050; } @@ -58,7 +59,7 @@ &:not(:first-child) { margin-top: $mu100; - @include set-from-screen("l") { + @include set-from-screen('l') { margin: { top: 0; left: $mu100; @@ -77,16 +78,16 @@ // Notification size @each $size, $props in $notification-sizes { &--#{$size} { - @if $size != "m" { + @if ($size != 'm') { @include set-notification-size($props); @each $type, $props in $notification-types { - @if $type != "information" { + @if ($type != 'information') { &#{$parent}--#{$type} { @include set-notification-type($type, $size); } } @else { - @include set-notification-type("information", $size); + @include set-notification-type('information', $size); } } } @@ -98,11 +99,10 @@ position: relative; &__close { - @include set-focus-floating-base(); + @include set-focus-floating-base; - background-color: transparent; - background-image: url("#{inline-icons('cross-16', $notification-close-icon-color)}"); - background-repeat: no-repeat; + background: transparent + url(inline-icons('cross-16', $notification-close-icon-color)) no-repeat; background-size: $mu100; border: 0; cursor: pointer; @@ -116,7 +116,7 @@ width: $mu100; &:focus { - @include set-focus-floating() { + @include set-focus-floating { box-shadow: 0 0 0 $size-focus-border-thin $color-focus-border; } } diff --git a/packages/styles/components/_c.option-button.scss b/packages/styles/components/_c.option-button.scss index 09e598fa7..ad42f47a7 100644 --- a/packages/styles/components/_c.option-button.scss +++ b/packages/styles/components/_c.option-button.scss @@ -7,7 +7,7 @@ text-align: center; &__input { - @include set-hidden-input (); + @include set-hidden-input; &:hover + #{$parent}__label { box-shadow: 0 0 0 2px $color-option-button-hover-label-shadow; @@ -31,7 +31,7 @@ } &__label { - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); position: relative; padding: magic-unit-rem(1.5625, true) $mu200; // 25px 32px diff --git a/packages/styles/components/_c.password-input.scss b/packages/styles/components/_c.password-input.scss index ec2f89d6b..1be0e5893 100644 --- a/packages/styles/components/_c.password-input.scss +++ b/packages/styles/components/_c.password-input.scss @@ -11,7 +11,7 @@ &__button { @include unstyle-button(); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background-color: $color-input-background; border: get-border("s") solid $color-input-border; diff --git a/packages/styles/components/_c.progressbar.scss b/packages/styles/components/_c.progressbar.scss index cbac11951..2abb862fc 100644 --- a/packages/styles/components/_c.progressbar.scss +++ b/packages/styles/components/_c.progressbar.scss @@ -1,7 +1,7 @@ .mc-progressbar { $parent: get-parent-selector(&); - @include set-font-family (); + @include set-font-family; align-items: center; background-color: $color-progress-background; @@ -50,7 +50,7 @@ // size modifiers @each $name, $props in $progressbar-sizes { &--#{$name} { - @if $name != "m" { + @if ($name != "m") { height: map-get($props, "height"); &, diff --git a/packages/styles/components/_c.quantity-selector.scss b/packages/styles/components/_c.quantity-selector.scss index 6aa6d34ec..0621a630b 100644 --- a/packages/styles/components/_c.quantity-selector.scss +++ b/packages/styles/components/_c.quantity-selector.scss @@ -4,7 +4,6 @@ display: flex; position: relative; - /* stylelint-disable no-descending-specificity */ &__button-right, &__button-left { z-index: 1; @@ -17,7 +16,6 @@ &__button-left { border-radius: $mu025 0 0 $mu025; } - /* stylelint-enable no-descending-specificity */ &__input { border-radius: 0; diff --git a/packages/styles/components/_c.radio.scss b/packages/styles/components/_c.radio.scss index 3f1b70e1e..fa8eb3cb8 100644 --- a/packages/styles/components/_c.radio.scss +++ b/packages/styles/components/_c.radio.scss @@ -16,7 +16,7 @@ } &__input { - @include reset-input(); + @include reset-input; border: $radio-border-width solid $color-input-border; min-width: $radio-min-width; @@ -50,18 +50,22 @@ } &:hover { - border-color: $color-input-hover-border; - - &::-ms-check { + @include add-demo-state-class { border-color: $color-input-hover-border; + + &::-ms-check { + border-color: $color-input-hover-border; + } } } &:focus { - @include set-shadow-focus(); - - &::-ms-check { + @include add-demo-state-class { @include set-shadow-focus(); + + &::-ms-check { + @include set-shadow-focus(); + } } } @@ -118,10 +122,12 @@ } &:hover { - border-color: $color-input-invalid-hover-border; - - &::-ms-check { + @include add-demo-state-class { border-color: $color-input-invalid-hover-border; + + &::-ms-check { + border-color: $color-input-invalid-hover-border; + } } } } diff --git a/packages/styles/components/_c.select.scss b/packages/styles/components/_c.select.scss index fbb5f5f41..93c9edb68 100644 --- a/packages/styles/components/_c.select.scss +++ b/packages/styles/components/_c.select.scss @@ -1,6 +1,6 @@ /* mqp:start */ .mc-select { - @include reset-input(); + @include reset-input; @include set-select-size($select-default-size); background-image: $select-background-arrow; @@ -18,11 +18,15 @@ } &:hover { - border-color: $color-input-hover-border; + @include add-demo-state-class { + border-color: $color-input-hover-border; + } } &:focus { - @include set-shadow-focus(); + @include add-demo-state-class { + @include set-shadow-focus(); + } } &:disabled { diff --git a/packages/styles/components/_c.stars-input.scss b/packages/styles/components/_c.stars-input.scss index d0368ef27..657bcf315 100644 --- a/packages/styles/components/_c.stars-input.scss +++ b/packages/styles/components/_c.stars-input.scss @@ -11,7 +11,7 @@ &__text, &__radio { - @include set-hidden-input(); + @include set-hidden-input; } &__radio::-ms-check { @@ -22,7 +22,7 @@ @include set-stars-size($stars-default-size); @include set-focus-transition(); - background-image: url("#{inline-icons('star-full-32', $color-star-full)}"); + background-image: url(inline-icons("star-full-32", $color-star-full)); background-position: center center; background-repeat: repeat-x; background-size: $stars-default-bg-size $stars-default-bg-size; @@ -30,7 +30,7 @@ cursor: pointer; &::before { - background-image: url("#{inline-icons('star-full-32', $color-star-full)}"); + background-image: url(inline-icons("star-full-32", $color-star-full)); background-position: left center; background-repeat: repeat-x; background-size: $stars-default-bg-size $stars-default-bg-size; @@ -53,12 +53,12 @@ :checked ~ &__label, :focus ~ &__label { - background-image: url("#{inline-icons('star-empty-32', $color-star-full)}"); + background-image: url(inline-icons("star-empty-32", $color-star-full)); } :checked + &__label, :focus + &__label { - background-image: url("#{inline-icons('star-full-32', $color-star-full)}"); + background-image: url(inline-icons("star-full-32", $color-star-full)); } :focus + &__label { @@ -66,11 +66,11 @@ } &__radio:hover ~ &__label { - background-image: url("#{inline-icons('star-empty-32', $color-star-full)}"); + background-image: url(inline-icons("star-empty-32", $color-star-full)); } &__radio:hover + &__label { - background-image: url("#{inline-icons('star-full-32', $color-star-full)}"); + background-image: url(inline-icons("star-full-32", $color-star-full)); &::before { opacity: 1; @@ -79,7 +79,7 @@ @each $size, $props in $stars-sizes { &--#{$size} { - @if $size != "m" { + @if ($size != "m") { @include set-stars-container($props); $bg-variation-size: map-deep-get( diff --git a/packages/styles/components/_c.stars-result.scss b/packages/styles/components/_c.stars-result.scss index f3a277267..89b0e0307 100644 --- a/packages/styles/components/_c.stars-result.scss +++ b/packages/styles/components/_c.stars-result.scss @@ -10,7 +10,7 @@ display: flex; &__text { - @include set-hidden-input(); + @include set-hidden-input; } &__visual { @@ -49,7 +49,7 @@ @each $size, $props in $stars-sizes { &--#{$size} { - @if $size != "m" { + @if ($size != "m") { #{$parent} { &__visual { @include set-stars-container($props); diff --git a/packages/styles/components/_c.stepper.scss b/packages/styles/components/_c.stepper.scss index 76d2d926e..263cba38f 100644 --- a/packages/styles/components/_c.stepper.scss +++ b/packages/styles/components/_c.stepper.scss @@ -123,7 +123,11 @@ } &__icon { + fill: $color-stepper-icon; max-width: 100%; + } + + &__detail { @include set-font-scale("04", "m"); color: $color-font-light; diff --git a/packages/styles/components/_c.tag.scss b/packages/styles/components/_c.tag.scss index 3574ab49b..28360d07f 100644 --- a/packages/styles/components/_c.tag.scss +++ b/packages/styles/components/_c.tag.scss @@ -40,7 +40,7 @@ } &:focus { - @include set-focus-floating() { + @include set-focus-floating { box-shadow: 0 0 0 $size-focus-border-thin $color-focus-border; } } @@ -78,7 +78,6 @@ user-select: none; } - /* stylelint-disable no-descending-specificity */ &__pill { @include set-tag-base-style("m"); @include set-focus-transition(); @@ -94,29 +93,26 @@ :checked + & { background: $color-tag-selectable-light-selected-background; - box-shadow: - inset 0 0 0 get-border("s") + box-shadow: inset 0 0 0 get-border("s") $color-tag-selectable-light-selected-background; color: $color-tag-selectable-light-selected-text; &:hover { background: $color-tag-selectable-light-selected-hover-background; - box-shadow: - inset 0 0 0 get-border("s") + box-shadow: inset 0 0 0 get-border("s") $color-tag-selectable-light-selected-hover-background; } } &:active { background: $color-tag-selectable-light-active-background; - box-shadow: - inset 0 0 0 get-border("s") + box-shadow: inset 0 0 0 get-border("s") $color-tag-selectable-light-active-border; color: $color-tag-selectable-light-active-text; } :focus + & { - @include set-focus-floating() { + @include set-focus-floating { box-shadow: 0 0 0 $size-focus-border-thin $color-focus-border; } } @@ -140,8 +136,7 @@ &:active { background: $color-tag-selectable-dark-active-background; - box-shadow: - inset 0 0 0 get-border("s") + box-shadow: inset 0 0 0 get-border("s") $color-tag-selectable-dark-active-border; color: $color-tag-selectable-dark-active-text; } @@ -149,8 +144,7 @@ :checked + .mc-tag-selectable__pill { background: $color-tag-selectable-dark-selected-background; - box-shadow: - inset 0 0 0 get-border("s") + box-shadow: inset 0 0 0 get-border("s") $color-tag-selectable-dark-selected-border; color: $color-tag-selectable-dark-selected-text; @@ -165,7 +159,6 @@ color: $color-tag-selectable-dark-disabled-text; } } - /* stylelint-enable no-descending-specificity */ &--s { @include modify-from-screens($major-screens) { @@ -203,7 +196,7 @@ .mc-tag-removable__remove { @include set-tag-removable-icon("s"); - @include set-tag-icon-base64("s"); + @include set-tag-icon-B64("s"); } } } @@ -220,7 +213,7 @@ .mc-tag-removable__remove { @include set-tag-removable-icon("m"); - @include set-tag-icon-base64(); + @include set-tag-icon-B64(); } } } @@ -237,9 +230,9 @@ &__remove { @include unstyle-button(); @include set-tag-removable-icon("m"); - @include set-tag-icon-base64(); + @include set-tag-icon-B64(); - @include set-focus-floating-base() { + @include set-focus-floating-base { border-radius: 50%; top: -(math.div($mu025, 2)); right: -(math.div($mu025, 2)); @@ -263,7 +256,7 @@ } &:focus { - @include set-focus-floating() { + @include set-focus-floating { box-shadow: 0 0 0 $size-focus-border-thin $color-focus-border; } } @@ -273,7 +266,7 @@ } .mc-tag-removable--dark & { - @include set-tag-icon-base64("dark"); + @include set-tag-icon-B64("dark"); background-color: $color-tag-removable-dark-background; diff --git a/packages/styles/components/_c.text-input.scss b/packages/styles/components/_c.text-input.scss index ca563b3f3..e96368709 100644 --- a/packages/styles/components/_c.text-input.scss +++ b/packages/styles/components/_c.text-input.scss @@ -2,7 +2,7 @@ /* mqp:start */ .mc-text-input { - @include reset-input(); + @include reset-input; @include set-input-size($input-default-size); @include set-focus-transition(); @@ -30,7 +30,11 @@ &.is-valid { border-color: $color-input-valid-border; - background-image: url("#{inline-icons('notification-circle-available-24', $color-input-valid-border)}"); + background-image: url( + inline-icons( + "notification-circle-available-24", + $color-input-valid-border + )); &:hover, &.is-hover { @@ -40,7 +44,11 @@ &.is-invalid { border-color: $color-input-invalid-border; - background-image: url("#{inline-icons('notification-warning-24', $color-input-invalid-border)}"); + background-image: url( + inline-icons( + "notification-warning-24", + $color-input-invalid-border + )); &:hover, &.is-hover { @@ -49,11 +57,15 @@ } &:hover { - border-color: $color-input-hover-border; + @include add-demo-state-class { + border-color: $color-input-hover-border; + } } &:focus { - @include set-shadow-focus(); + @include add-demo-state-class { + @include set-shadow-focus(); + } } &:disabled { diff --git a/packages/styles/components/_c.textarea.scss b/packages/styles/components/_c.textarea.scss index 3628a02fe..60d827a74 100644 --- a/packages/styles/components/_c.textarea.scss +++ b/packages/styles/components/_c.textarea.scss @@ -1,10 +1,10 @@ /* mqp:start */ .mc-textarea { - $border-width: get-border("s"); + $border-width: get-border('s'); - @include reset-input(); - @include set-font-scale("05", "m"); - @include set-border-radius("m"); + @include reset-input; + @include set-font-scale('05', 'm'); + @include set-border-radius('m'); display: block; width: 100%; @@ -13,14 +13,15 @@ border: $border-width solid $color-input-border; background: $color-input-background; transition: all ease 200ms; - // remove border height and center baseline optically padding: calc(#{$mu075} - 0.125em - #{$border-width}) $mu075 calc(#{$mu075} + 0.125em - #{$border-width}); &:hover { - border-color: $color-input-hover-border; + @include add-demo-state-class { + border-color: $color-input-hover-border; + } } &.is-valid { @@ -32,7 +33,9 @@ } &:focus { - @include set-shadow-focus(); + @include add-demo-state-class { + @include set-shadow-focus(); + } } &:disabled { diff --git a/packages/styles/components/_c.toggle.scss b/packages/styles/components/_c.toggle.scss index 9c20c823e..ab74d27fe 100644 --- a/packages/styles/components/_c.toggle.scss +++ b/packages/styles/components/_c.toggle.scss @@ -138,10 +138,9 @@ // the switch pill foreground &::after { - background-color: $color-toggle-off-circle; - background-image: url("#{inline-icons('control-cross-16', $color-toggle-off-background)}"); - background-repeat: no-repeat; - background-position: center; + background: $color-toggle-off-circle + url(inline-icons("control-cross-16", $color-toggle-off-background)) + no-repeat center; background-size: $mu100; border: solid get-border("l") $color-toggle-off-background; will-change: transform; diff --git a/packages/styles/components/_c.tooltip.scss b/packages/styles/components/_c.tooltip.scss index a3ec50194..cb940502a 100644 --- a/packages/styles/components/_c.tooltip.scss +++ b/packages/styles/components/_c.tooltip.scss @@ -42,14 +42,9 @@ width: max-content; } - &::before, - &::after { - background-color: transparent; - background-repeat: no-repeat; - } - &::before { - background-image: url("#{inline-icons('tooltip-arrow', $color-tooltip-border)}"); + background: transparent + url(inline-icons("tooltip-arrow", $color-tooltip-border)) no-repeat; background-size: 0.625rem; content: ""; height: 0.625rem; @@ -58,7 +53,8 @@ } &::after { - background-image: url("#{inline-icons('tooltip-arrow', $color-tooltip-background)}"); + background: transparent + url(inline-icons("tooltip-arrow", $color-tooltip-background)) no-repeat; background-size: $mu050; content: ""; height: $mu050; diff --git a/packages/styles/dev-utils/_qdu.magic-unit-grid.scss b/packages/styles/dev-utils/_qdu.magic-unit-grid.scss index 8af032164..28c5a1282 100644 --- a/packages/styles/dev-utils/_qdu.magic-unit-grid.scss +++ b/packages/styles/dev-utils/_qdu.magic-unit-grid.scss @@ -1,17 +1,13 @@ -@if variable-exists("mozaic-env") and $mozaic-env == development { - $grid-line-color: rgb(0 100 100 / 0.1); - $grid-subline-color: rgb(0 100 100 / 0.03); +@if variable-exists('mozaic-env') and $mozaic-env == development { + $grid-line-color: rgba(0, 100, 100, 0.1); + $grid-subline-color: rgba(0, 100, 100, 0.03); $grid-shadow-color: #ececec; $grid-magic-unit: #{$magic-unit}rem; .mdu-magic-unit-grid { box-shadow: inset 0 0 0 1px $grid-shadow-color; background-image: - linear-gradient( - 90deg, - $grid-line-color 1px, - transparent 1px - ), + linear-gradient(90deg, $grid-line-color 1px, transparent 1px), linear-gradient(0deg, $grid-line-color 1px, transparent 1px), linear-gradient(90deg, $grid-subline-color 1px, transparent 1px), linear-gradient(0deg, $grid-subline-color 1px, transparent 1px), diff --git a/packages/styles/layouts/_l.flexy.scss b/packages/styles/layouts/_l.flexy.scss index 03236a17e..3a8aed13f 100644 --- a/packages/styles/layouts/_l.flexy.scss +++ b/packages/styles/layouts/_l.flexy.scss @@ -93,25 +93,21 @@ // base 2 @include make-flexy-col(1, 2, $major-screens); @include make-flexy-col-push(1, 2, $major-screens); - // base 3 @include make-flexy-col(1, 3, $major-screens); @include make-flexy-col-push(1, 3, $major-screens); @include make-flexy-col(2, 3, $major-screens); @include make-flexy-col-push(2, 3, $major-screens); - // base 4 @include make-flexy-col(1, 4, $major-screens); @include make-flexy-col-push(1, 4, $major-screens); @include make-flexy-col(3, 4, $major-screens); @include make-flexy-col-push(3, 4, $major-screens); - // base 6 @include make-flexy-col(1, 6, $major-screens); @include make-flexy-col-push(1, 6, $major-screens); @include make-flexy-col(5, 6, $major-screens); @include make-flexy-col-push(5, 6, $major-screens); - // base 12 @for $i from 1 through 11 { @include make-flexy-col($i, 12, $major-screens); diff --git a/packages/styles/package.json b/packages/styles/package.json index bc764bd76..085d6eb5a 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -2,6 +2,7 @@ "name": "@mozaic-ds/styles", "version": "1.62.0", "description": "Styles scss for Designe System Adeo", + "author": "", "license": "ISC", "dependencies": { "@mozaic-ds/tokens": "^1.62.0" diff --git a/packages/styles/settings-tools/_all-settings.scss b/packages/styles/settings-tools/_all-settings.scss index 9965fd354..2cb9c5cef 100644 --- a/packages/styles/settings-tools/_all-settings.scss +++ b/packages/styles/settings-tools/_all-settings.scss @@ -1,49 +1,51 @@ -@import "./t.map-tools"; -@import "./t.selectors"; -@import "./t.colors"; -@import "./s.hide"; -@import "./s.unstyle"; -@import "./t.size-units-converters"; -@import "./s.inline-icons"; -@import "./s.fonts-faces"; -@import "./s.fonts-scale"; -@import "./s.fonts-colors"; -@import "./s.magic-unit"; -@import "./s.spaces"; -@import "./s.screens"; -@import "./s.radius"; -@import "./s.border"; -@import "./s.shadows"; -@import "./s.focus"; -@import "./t.reset-forms"; -@import "./t.container"; -@import "./t.flexy"; -@import "./s.buttons"; -@import "./s.checkbox"; -@import "./s.toggle"; -@import "./s.notification"; -@import "./s.radio"; -@import "./s.links"; -@import "./s.select"; -@import "./s.flags"; -@import "./s.stars"; -@import "./s.tag"; -@import "./s.text-input"; -@import "./s.headings"; -@import "./s.divider"; -@import "./s.fields"; -@import "./s.hero"; -@import "./s.progressbar"; -@import "./s.ratio"; -@import "./s.accordions"; -@import "./s.card"; -@import "./s.stepper"; -@import "./s.modal"; -@import "./s.badges"; -@import "./s.datatable"; -@import "./s.visually-hidden"; -@import "./s.overlay"; -@import "./s.loader"; -@import "./s.autocomplete"; -@import "./s.dropdown"; -@import "./s.listbox"; +@import "_tokens.scss"; +@import "./_t.map-tools.scss"; +@import "./_t.demo-state-class"; +@import "./_t.selectors"; +@import "./_t.colors"; +@import "./_s.hide.scss"; +@import "./_s.unstyle.scss"; +@import "./_t.size-units-converters.scss"; +@import "./_s.inline-icons.scss"; +@import "./_s.fonts-faces.scss"; +@import "./_s.fonts-scale.scss"; +@import "./_s.fonts-colors.scss"; +@import "./_s.magic-unit.scss"; +@import "./_s.spaces.scss"; +@import "./_s.screens.scss"; +@import "./_s.radius.scss"; +@import "./_s.border.scss"; +@import "./_s.shadows.scss"; +@import "./_s.focus.scss"; +@import "./_t.reset-forms.scss"; +@import "./_t.container.scss"; +@import "./_t.flexy.scss"; +@import "./_s.buttons.scss"; +@import "./_s.checkbox.scss"; +@import "./_s.toggle.scss"; +@import "./_s.notification.scss"; +@import "./_s.radio.scss"; +@import "./_s.links.scss"; +@import "./_s.select.scss"; +@import "./_s.flags.scss"; +@import "./_s.stars.scss"; +@import "./_s.tag.scss"; +@import "./_s.text-input.scss"; +@import "./_s.headings.scss"; +@import "./_s.divider.scss"; +@import "./_s.fields.scss"; +@import "./_s.hero.scss"; +@import "./_s.progressbar.scss"; +@import "./_s.ratio.scss"; +@import "./_s.accordions.scss"; +@import "./_s.card.scss"; +@import "./_s.stepper"; +@import "./_s.modal"; +@import "./_s.badges"; +@import "./_s.datatable"; +@import "./_s.visually-hidden"; +@import "./_s.overlay"; +@import "./_s.loader"; +@import "./_s.autocomplete"; +@import "./_s.dropdown"; +@import "./_s.listbox"; diff --git a/packages/styles/settings-tools/_s.accordions.scss b/packages/styles/settings-tools/_s.accordions.scss index da0c67026..c02711b14 100644 --- a/packages/styles/settings-tools/_s.accordions.scss +++ b/packages/styles/settings-tools/_s.accordions.scss @@ -20,6 +20,7 @@ $accordion-sizes: ( "padding-v": $mu125, ), ); + $accordion-default-size: map-get($accordion-sizes, "m"); @mixin set-accordion-size($sizeProps, $parent) { @@ -42,7 +43,7 @@ $accordion-default-size: map-get($accordion-sizes, "m"); #{$parent}__label { @include set-font-scale($font-size, "m"); - background-image: url("#{inline-icons($background-open, $color-font-darker)}"); + background-image: url(inline-icons($background-open, $color-font-darker)); background-size: $background-size; padding: { top: $padding-v; @@ -57,19 +58,28 @@ $accordion-default-size: map-get($accordion-sizes, "m"); input#{$parent}__trigger { &:checked { ~ #{$parent}__label { - background-image: url("#{inline-icons($background-close, $color-font-darker)}"); + background-image: url(inline-icons( + $background-close, + $color-font-darker + )); } } &:disabled { ~ #{$parent}__label { - background-image: url("#{inline-icons($background-open, $color-font-light)}"); + background-image: url(inline-icons( + $background-open, + $color-font-light + )); } } &:disabled:checked { ~ #{$parent}__label { - background-image: url("#{inline-icons($background-close, $color-font-light)}"); + background-image: url(inline-icons( + $background-close, + $color-font-light + )); } } } @@ -92,7 +102,7 @@ $accordion-default-size: map-get($accordion-sizes, "m"); position: absolute; top: calc(50% - math.div($background-size, 2)); right: 0.5rem; - background-image: url("#{inline-icons($background-open, $color-font-darker)}"); + background-image: url(inline-icons($background-open, $color-font-darker)); background-size: $background-size; width: $background-size; height: $background-size; @@ -100,7 +110,10 @@ $accordion-default-size: map-get($accordion-sizes, "m"); &:disabled { &::before { - background-image: url("#{inline-icons($background-open, $color-font-light)}"); + background-image: url(inline-icons( + $background-open, + $color-font-light + )); } } } @@ -118,13 +131,10 @@ $accordion-default-size: map-get($accordion-sizes, "m"); &:disabled { &::before { - background-image: url("#{inline-icons($background-close, $color-font-darker)}"); - } - - &:disabled { - &::before { - background-image: url("#{inline-icons($background-close, $color-font-light)}"); - } + background-image: url(inline-icons( + $background-close, + $color-font-light + )); } } } diff --git a/packages/styles/settings-tools/_s.badges.scss b/packages/styles/settings-tools/_s.badges.scss index 988480bc5..201e2c3e2 100644 --- a/packages/styles/settings-tools/_s.badges.scss +++ b/packages/styles/settings-tools/_s.badges.scss @@ -3,7 +3,7 @@ $badges: get-token(color, badge); $badge-border: get-border("s"); -@mixin set-badge-base() { +@mixin set-badge-base { @include set-border-radius(); border: $badge-border solid transparent; diff --git a/packages/styles/settings-tools/_s.border.scss b/packages/styles/settings-tools/_s.border.scss index b67bd0704..c702708dd 100644 --- a/packages/styles/settings-tools/_s.border.scss +++ b/packages/styles/settings-tools/_s.border.scss @@ -1,5 +1,5 @@ @function get-border($size) { - @if variable-exists($name: $size) { + @if ( variable-exists($name: $size)) { @warn "Border size #{$size} doesn't exist"; } diff --git a/packages/styles/settings-tools/_s.buttons.scss b/packages/styles/settings-tools/_s.buttons.scss index cb3f99aa3..ac82bea65 100644 --- a/packages/styles/settings-tools/_s.buttons.scss +++ b/packages/styles/settings-tools/_s.buttons.scss @@ -1,6 +1,7 @@ @use "sass:math"; $buttons: get-token(color, button); + $button-sizes: ( "s": ( "font-size": "04", @@ -9,8 +10,8 @@ $button-sizes: ( "padding-h": $mu100, "min-height": $mu200, "icon-size": $mu150, - "icon-margin-top": -1 * math.div($mu075, 4), - "icon-margin-bottom": -1 * math.div($mu075, 4), + "icon-margin-top": -(math.div($mu075, 4)), + "icon-margin-bottom": -(math.div($mu075, 4)), "only-icon-size": $mu150, ), "m": ( @@ -20,8 +21,8 @@ $button-sizes: ( "padding-h": $mu150, "min-height": $mu300, "icon-size": $mu150, - "icon-margin-top": -1 * math.div($mu025, $mu025) * 1px, - "icon-margin-bottom": -1 * math.div($mu025, $mu025) * 1px, + "icon-margin-top": -(math.div($mu025, $mu025)) * 1px, + "icon-margin-bottom": -(math.div($mu025, $mu025)) * 1px, "only-icon-size": $mu200, ), "l": ( @@ -31,11 +32,12 @@ $button-sizes: ( "padding-h": $mu150, "min-height": $mu350, "icon-size": $mu200, - "icon-margin-top": -1 * $mu025, - "icon-margin-bottom": -1 * $mu025, + "icon-margin-top": -$mu025, + "icon-margin-bottom": -$mu025, "only-icon-size": $mu200, ), ); + $button-medium: map-get($button-sizes, "m"); $button-radius: get-border-radius("m"); $button-border: get-border("m"); @@ -93,7 +95,9 @@ $button-color-default: map-get(get-token(color, button, "solid"), "font"); @if map-has-key($props, "background") { background-color: map-get($props, "background"); - } @else { + } + + @else { background-color: transparent; } @@ -102,16 +106,20 @@ $button-color-default: map-get(get-token(color, button, "solid"), "font"); $button-color-hover: map-get($hover-props, "font"); &:hover { - @if map-has-key($hover-props, "background") { - background-color: map-get($hover-props, "background"); - } + @include add-demo-state-class { + @if map-has-key($hover-props, "background") { + background-color: map-get($hover-props, "background"); + } + + @if map-has-key($hover-props, "font") { + @if $button-color != $button-color-default or $is-default == true { + color: $button-color-hover; + } + } - @if map-has-key($hover-props, "font") { - @if $button-color != $button-color-default or $is-default == true { - color: $button-color-hover; + @else { + color: $button-color; } - } @else { - color: $button-color; } } } @@ -121,8 +129,10 @@ $button-color-default: map-get(get-token(color, button, "solid"), "font"); @each $prop, $value in $active-props { &:active { - background-color: map-get($active-props, "background"); - color: map-get($active-props, "font"); + @include add-demo-state-class { + background-color: map-get($active-props, "background"); + color: map-get($active-props, "font"); + } } } } @@ -140,7 +150,7 @@ $button-color-default: map-get(get-token(color, button, "solid"), "font"); } } -@mixin set-button-layout() { +@mixin set-button-layout { cursor: pointer; border-radius: $button-radius; text-align: center; diff --git a/packages/styles/settings-tools/_s.card.scss b/packages/styles/settings-tools/_s.card.scss index 71267f772..3d22089b1 100644 --- a/packages/styles/settings-tools/_s.card.scss +++ b/packages/styles/settings-tools/_s.card.scss @@ -1,7 +1,7 @@ @use "sass:math"; $card-visual-ratios: ( - "1x1": percentage(math.div(1, 1)), - "4x3": percentage(math.div(3, 4)), - "16x9": percentage(math.div(9, 16)), + '1x1': percentage(math.div(1, 1)), + '4x3': percentage(math.div(3, 4)), + '16x9': percentage(math.div(9, 16)), ); diff --git a/packages/styles/settings-tools/_s.checkbox.scss b/packages/styles/settings-tools/_s.checkbox.scss index 37629663f..0ae841be3 100644 --- a/packages/styles/settings-tools/_s.checkbox.scss +++ b/packages/styles/settings-tools/_s.checkbox.scss @@ -30,7 +30,11 @@ $checkbox-label-space: $mu100; &:checked { background-color: $color-input-checked-background; border-color: $color-input-checked-border; - background-image: url("#{inline-icons('checkmark-16', $color-input-checked-icon)}"); + background-image: url( + inline-icons( + "checkmark-16", + $color-input-checked-icon + )); background-position: center center; background-size: $mu100; @@ -42,7 +46,11 @@ $checkbox-label-space: $mu100; &:disabled { border-color: $color-input-disabled-border; background: $color-input-disabled-background; - background-image: url("#{inline-icons('checkmark-16', $color-input-disabled-icon)}"); + background-image: url( + inline-icons( + "checkmark-16", + $color-input-disabled-icon + )); } } } diff --git a/packages/styles/settings-tools/_s.datatable.scss b/packages/styles/settings-tools/_s.datatable.scss index 84e0939c4..0902ca80c 100644 --- a/packages/styles/settings-tools/_s.datatable.scss +++ b/packages/styles/settings-tools/_s.datatable.scss @@ -18,6 +18,7 @@ $datatable-sizes: ( "height": $height-datatable-cell-size-l, ), ); + $datatabke-default-celle-size: map-get($datatable-sizes, "m"); @mixin set-datatable-base() { diff --git a/packages/styles/settings-tools/_s.divider.scss b/packages/styles/settings-tools/_s.divider.scss index 2a6576e8b..dfd52f765 100644 --- a/packages/styles/settings-tools/_s.divider.scss +++ b/packages/styles/settings-tools/_s.divider.scss @@ -15,11 +15,11 @@ $divider-sizes: ( content: ""; display: block; - @if $position == "bottom" or $position == "top" { + @if ($position == "bottom" or $position == "top") { margin: 0 auto; height: $divider-border-size; width: unquote($width); - } @else if $position == "left" or $position == "right" { + } @else if ($position == "left" or $position == "right") { width: $divider-border-size; height: unquote($width); position: absolute; @@ -40,22 +40,22 @@ $divider-sizes: ( $width: "100%", $size: "s" ) { - @if $position == "top" { + @if ($position == "top") { &::before { @include divider-layout($position, $color, $width, $size); @content; } - } @else if $position == "right" { + } @else if ($position == "right") { &::after { @include divider-layout($position, $color, $width, $size); @content; } - } @else if $position == "bottom" { + } @else if ($position == "bottom") { &::after { @include divider-layout($position, $color, $width, $size); @content; } - } @else if $position == "left" { + } @else if ($position == "left") { &::before { @include divider-layout($position, $color, $width, $size); @content; diff --git a/packages/styles/settings-tools/_s.fields.scss b/packages/styles/settings-tools/_s.fields.scss index bcbd4db02..9dd93562f 100644 --- a/packages/styles/settings-tools/_s.fields.scss +++ b/packages/styles/settings-tools/_s.fields.scss @@ -1,5 +1,5 @@ -@mixin set-field-label() { - @include set-font-scale("04", "xs"); +@mixin set-field-label { + @include set-font-scale('04', 'xs'); color: $color-fields-label; } diff --git a/packages/styles/settings-tools/_s.flags.scss b/packages/styles/settings-tools/_s.flags.scss index 1518531b5..7459a9d47 100644 --- a/packages/styles/settings-tools/_s.flags.scss +++ b/packages/styles/settings-tools/_s.flags.scss @@ -1,4 +1,5 @@ $flags: get-token(color, flag); + $flag-border: get-border("s"); @mixin set-flag-base($parent) { @@ -6,7 +7,6 @@ $flag-border: get-border("s"); font-size: get-token(size, font, "04"); margin: 0; vertical-align: middle; - // custom line-height to ensure the multi-line behaviour is done in the right conditions line-height: 1.786; diff --git a/packages/styles/settings-tools/_s.focus.scss b/packages/styles/settings-tools/_s.focus.scss index 57d03996b..18484d75a 100644 --- a/packages/styles/settings-tools/_s.focus.scss +++ b/packages/styles/settings-tools/_s.focus.scss @@ -63,7 +63,9 @@ $size-focus-radius-m: math.div($mu075, 2); @content; } - } @else { + } + + @else { &::after { @include focus-floating-position(); @include set-focus-transition(); @@ -80,7 +82,9 @@ $size-focus-radius-m: math.div($mu075, 2); @content; } - } @else { + } + + @else { &::after { @include set-shadow-focus(); diff --git a/packages/styles/settings-tools/_s.fonts-faces.scss b/packages/styles/settings-tools/_s.fonts-faces.scss index e2155482f..b3cae36f5 100644 --- a/packages/styles/settings-tools/_s.fonts-faces.scss +++ b/packages/styles/settings-tools/_s.fonts-faces.scss @@ -1,5 +1,12 @@ // Default path $font-path: "/fonts"; +$preset-adeo: false; + +@if $preset == "adeo" { + $preset-adeo: true; +} + +$font-family: if($preset-adeo, "Roboto", "LeroyMerlin"); @if variable-exists(local-config) { @if type-of($local-config) == map and map-has-key($local-config, font-path) { @@ -8,66 +15,72 @@ $font-path: "/fonts"; } $font-weights: ( - "light": $font-weight-light, - "regular": $font-weight-regular, - "semi-bold": $font-weight-semi-bold, + "light": 300, + "regular": 400, + "semi-bold": if($preset-adeo, 700, 600) ); @mixin import-font-families($italic: true) { @font-face { - font-family: $font-family; - src: url("#{$font-path}/LeroyMerlinSans-Web-Light.woff2") format("woff2"), + font-family: "LeroyMerlin"; + src: + url("#{$font-path}/LeroyMerlinSans-Web-Light.woff2") format("woff2"), url("#{$font-path}/LeroyMerlinSans-Web-Light.woff") format("woff"); - font-weight: $font-weight-light; + font-weight: 300; font-style: normal; font-display: swap; } @font-face { - font-family: $font-family; - src: url("#{$font-path}/LeroyMerlinSans-Web-Regular.woff2") format("woff2"), + font-family: "LeroyMerlin"; + src: + url("#{$font-path}/LeroyMerlinSans-Web-Regular.woff2") format("woff2"), url("#{$font-path}/LeroyMerlinSans-Web-Regular.woff") format("woff"); - font-weight: $font-weight-regular; + font-weight: 400; font-style: normal; font-display: swap; } @font-face { - font-family: $font-family; - src: url("#{$font-path}/LeroyMerlinSans-Web-SemiBold.woff2") format("woff2"), + font-family: "LeroyMerlin"; + src: + url("#{$font-path}/LeroyMerlinSans-Web-SemiBold.woff2") format("woff2"), url("#{$font-path}/LeroyMerlinSans-Web-SemiBold.woff") format("woff"); - font-weight: $font-weight-semi-bold; + font-weight: 600; font-style: normal; font-display: swap; } @if $italic { @font-face { - font-family: LeroyMerlin; - src: url("#{$font-path}/LeroyMerlinSans-Web-LightItalic.woff2") - format("woff2"), + font-family: "LeroyMerlin"; + src: + url("#{$font-path}/LeroyMerlinSans-Web-LightItalic.woff2") + format("woff2"), url("#{$font-path}/LeroyMerlinSans-Web-LightItalic.woff") format("woff"); - font-weight: $font-weight-light; + font-weight: 300; font-style: italic; font-display: swap; } @font-face { - font-family: LeroyMerlin; - src: url("#{$font-path}/LeroyMerlinSans-Web-Italic.woff2") format("woff2"), + font-family: "LeroyMerlin"; + src: + url("#{$font-path}/LeroyMerlinSans-Web-Italic.woff2") format("woff2"), url("#{$font-path}/LeroyMerlinSans-Web-Italic.woff") format("woff"); - font-weight: $font-weight-regular; + font-weight: 400; font-style: italic; font-display: swap; } @font-face { - font-family: LeroyMerlin; - src: url("#{$font-path}/LeroyMerlinSans-Web-SemiBoldItalic.woff2") - format("woff2"), + font-family: "LeroyMerlin"; + src: + url("#{$font-path}/LeroyMerlinSans-Web-SemiBoldItalic.woff2") + format("woff2"), url("#{$font-path}/LeroyMerlinSans-Web-SemiBoldItalic.woff") - format("woff"); - font-weight: $font-weight-semi-bold; + format("woff"); + font-weight: if($preset-adeo, 700, 600); font-style: italic; font-display: swap; } @@ -87,7 +100,7 @@ $font-weights: ( } @mixin set-font-face($weight: "regular", $italic: "") { - @include set-font-family(); + @include set-font-family; @include set-font-weight($weight); @if $italic != "" { diff --git a/packages/styles/settings-tools/_s.fonts-scale.scss b/packages/styles/settings-tools/_s.fonts-scale.scss index bc1fce8ab..9f9be0f0e 100644 --- a/packages/styles/settings-tools/_s.fonts-scale.scss +++ b/packages/styles/settings-tools/_s.fonts-scale.scss @@ -8,7 +8,7 @@ } @mixin set-font-scale($size, $line-height: "l") { - font-size: get-token(size, font, $size) * $magic-unit; + font-size: get-token(size, font, $size); @include set-line-height($size, $line-height); } diff --git a/packages/styles/settings-tools/_s.headings.scss b/packages/styles/settings-tools/_s.headings.scss index 7709285a6..76ea39c80 100644 --- a/packages/styles/settings-tools/_s.headings.scss +++ b/packages/styles/settings-tools/_s.headings.scss @@ -1,64 +1,64 @@ $heading-sizes: ( - "s": ( - "font-scale": "07", - "font-scale@from-m": "08", - "font-scale@from-l": "09", - "underline-width": $mu400, - "underline-width@from-m": magic-unit-rem(4.5, "true"), - "underline-width@from-l": $mu500, - "underline-margin": $mu100, - "underline-margin@from-m": $mu100, - "underline-margin@from-l": $mu125, + 's': ( + 'font-scale': '07', + 'font-scale@from-m': '08', + 'font-scale@from-l': '09', + 'underline-width': $mu400, + 'underline-width@from-m': magic-unit-rem(4.5, 'true'), + 'underline-width@from-l': $mu500, + 'underline-margin': $mu100, + 'underline-margin@from-m': $mu100, + 'underline-margin@from-l': $mu125, ), - "m": ( - "font-scale": "08", - "font-scale@from-m": "09", - "font-scale@from-l": "10", - "underline-width": magic-unit-rem(4.5, "true"), - "underline-width@from-m": $mu500, - "underline-width@from-l": magic-unit-rem(5.5, "true"), - "underline-margin": $mu100, - "underline-margin@from-m": $mu125, - "underline-margin@from-l": $mu150, + 'm': ( + 'font-scale': '08', + 'font-scale@from-m': '09', + 'font-scale@from-l': '10', + 'underline-width': magic-unit-rem(4.5, 'true'), + 'underline-width@from-m': $mu500, + 'underline-width@from-l': magic-unit-rem(5.5, 'true'), + 'underline-margin': $mu100, + 'underline-margin@from-m': $mu125, + 'underline-margin@from-l': $mu150, ), - "l": ( - "font-scale": "09", - "font-scale@from-m": "10", - "font-scale@from-l": "11", - "underline-width": $mu500, - "underline-width@from-m": magic-unit-rem(5.5, "true"), - "underline-width@from-l": $mu600, - "underline-margin": $mu125, - "underline-margin@from-m": $mu150, - "underline-margin@from-l": $mu200, + 'l': ( + 'font-scale': '09', + 'font-scale@from-m': '10', + 'font-scale@from-l': '11', + 'underline-width': $mu500, + 'underline-width@from-m': magic-unit-rem(5.5, 'true'), + 'underline-width@from-l': $mu600, + 'underline-margin': $mu125, + 'underline-margin@from-m': $mu150, + 'underline-margin@from-l': $mu200, ), ); @mixin mod-heading-sizes($parent) { @each $size, $props in $heading-sizes { - $font-scale: map-get($props, "font-scale"); - $font-scale-from-m: map-get($props, "font-scale@from-m"); - $font-scale-from-l: map-get($props, "font-scale@from-l"); - $underline-width: map-get($props, "underline-width"); - $underline-width-from-m: map-get($props, "underline-width@from-m"); - $underline-width-from-l: map-get($props, "underline-width@from-l"); - $underline-margin: map-get($props, "underline-margin"); - $underline-margin-from-m: map-get($props, "underline-margin@from-m"); - $underline-margin-from-l: map-get($props, "underline-margin@from-l"); + $font-scale: map-get($props, 'font-scale'); + $font-scale-from-m: map-get($props, 'font-scale@from-m'); + $font-scale-from-l: map-get($props, 'font-scale@from-l'); + $underline-width: map-get($props, 'underline-width'); + $underline-width-from-m: map-get($props, 'underline-width@from-m'); + $underline-width-from-l: map-get($props, 'underline-width@from-l'); + $underline-margin: map-get($props, 'underline-margin'); + $underline-margin-from-m: map-get($props, 'underline-margin@from-m'); + $underline-margin-from-l: map-get($props, 'underline-margin@from-l'); // headings sizes &--#{$size} { - @include set-font-scale($font-scale, "m"); + @include set-font-scale($font-scale, 'm'); - @include set-from-screen("m") { - @include set-font-scale($font-scale-from-m, "m"); + @include set-from-screen('m') { + @include set-font-scale($font-scale-from-m, 'm'); } - @include set-from-screen("l") { - @include set-font-scale($font-scale-from-l, "m"); + @include set-from-screen('l') { + @include set-font-scale($font-scale-from-l, 'm'); - @if $size == "l" { + @if ($size == 'l') { margin-bottom: $mu350; } } @@ -70,12 +70,12 @@ $heading-sizes: ( width: $underline-width; margin-top: $underline-margin; - @include set-from-screen("m") { + @include set-from-screen('m') { width: $underline-width-from-m; margin-top: $underline-margin-from-m; } - @include set-from-screen("l") { + @include set-from-screen('l') { width: $underline-width-from-l; margin-top: $underline-margin-from-l; } @@ -84,14 +84,14 @@ $heading-sizes: ( // alternative extra small line-height &--#{$size}#{$parent}--line-height-xs { - @include set-line-height($font-scale, "xs"); + @include set-line-height($font-scale, 'xs'); - @include set-from-screen("m") { - @include set-line-height($font-scale-from-m, "xs"); + @include set-from-screen('m') { + @include set-line-height($font-scale-from-m, 'xs'); } - @include set-from-screen("l") { - @include set-line-height($font-scale-from-l, "xs"); + @include set-from-screen('l') { + @include set-line-height($font-scale-from-l, 'xs'); } } } diff --git a/packages/styles/settings-tools/_s.inline-icons.scss b/packages/styles/settings-tools/_s.inline-icons.scss index f135f76a2..3ea88df33 100644 --- a/packages/styles/settings-tools/_s.inline-icons.scss +++ b/packages/styles/settings-tools/_s.inline-icons.scss @@ -1,200 +1,161 @@ -@function str-replace($string, $search, $replace: "") { - $index: str-index($string, $search); - - @if $index { - @return str-slice($string, 1, $index - 1) + $replace + str-replace( - str-slice($string, $index + str-length($search)), - $search, - $replace - ); - } - - @return $string; -} - -$encoding-reference: ( - ("%", "%25"), - // Encode "%" first, otherwise the "%" from encoded code would be encoded again (which would be bad) - ("<", "%3C"), - (">", "%3E"), - ("'", "%22"), - // Replace " with ' because that's shorter than %22 and normally working - ('"', "'"), - ("#", "%23"), - ("&", "%26") -); - -@function svg-encode($svg) { - @each $char, $encoded in $encoding-reference { - $svg: str-replace($svg, $char, $encoded); - } - - @return "data:image/svg+xml," + $svg; -} - -/* stylelint-disable max-line-length */ @function inline-icons($icon, $fill) { - $svg: ""; - @if $icon == "cross-16" { - $svg: ''; + @return ''; } @if $icon == "tag-delete-24" { - $svg: ''; + @return ''; } @if $icon == "tag-delete-16" { - $svg: ''; + @return ''; } @if $icon == "checkmark-16" { - $svg: ''; + @return ''; } @if $icon == "arrow-top-16" { - $svg: ''; + @return ''; } @if $icon == "arrow-left-16" { - $svg: ''; + @return ''; } @if $icon == "arrow-right-16" { - $svg: ''; + @return ''; } @if $icon == "arrow-down-16" { - $svg: ''; + @return ''; } @if $icon == "arrow-down-24" { - $svg: ''; + @return ''; } @if $icon == "upload-24" { - $svg: 'Media_Upload_24px'; + @return 'Media_Upload_24px'; } @if $icon == "valid-24" { - $svg: ''; + @return ''; } @if $icon == "alert-24" { - $svg: ''; + @return ''; } @if $icon == "delete-24" { - $svg: ''; + @return ''; } @if $icon == "display-close-32" { - $svg: ''; + @return ''; } @if $icon == "notification-available-16" { - $svg: ''; - } - - @if $icon == "notification-available-24" { - $svg: ''; + @return ''; } @if $icon == "notification-circle-available-24" { - $svg: ''; + @return ''; } @if $icon == "notification-information-24" { - $svg: ''; + @return ''; } @if $icon == "notification-information-32" { - $svg: ''; + @return ''; } @if $icon == "notification-success-24" { - $svg: ''; + @return ''; } @if $icon == "notification-success-32" { - $svg: ''; + @return ''; } @if $icon == "notification-warning-24" { - $svg: ''; + @return ''; } @if $icon == "notification-warning-32" { - $svg: ''; + @return ''; } @if $icon == "notification-danger-24" { - $svg: ''; + @return ''; } @if $icon == "notification-danger-32" { - $svg: ''; + @return ''; } @if $icon == "star-empty-16" { - $svg: ''; + @return ''; } @if $icon == "star-empty-24" { - $svg: ''; + @return ''; } @if $icon == "star-empty-32" { - $svg: ''; + @return ''; } @if $icon == "star-empty-48" { - $svg: ''; + @return ''; } @if $icon == "star-full-16" { - $svg: ''; + @return ''; } @if $icon == "star-full-24" { - $svg: ''; + @return ''; } @if $icon == "star-full-32" { - $svg: ''; + @return ''; } @if $icon == "star-full-48" { - $svg: ''; + @return ''; } @if $icon == "control-more-16" { - $svg: ''; + @return ''; } @if $icon == "control-more-24" { - $svg: ''; + @return ''; } @if $icon == "control-less-16" { - $svg: ''; + @return ''; } @if $icon == "control-less-24" { - $svg: ''; + @return ''; } @if $icon == "control-cross-16" { - $svg: ''; + @return ''; } @if $icon == "control-cross-32" { - $svg: ''; + @return ''; } @if $icon == "tooltip-arrow" { - $svg: ''; + @return ''; } - @return svg-encode($svg); + @if $icon == "notification-available-24" { + @return ''; + } } diff --git a/packages/styles/settings-tools/_s.links.scss b/packages/styles/settings-tools/_s.links.scss index 32e4af29a..d011e493d 100644 --- a/packages/styles/settings-tools/_s.links.scss +++ b/packages/styles/settings-tools/_s.links.scss @@ -12,7 +12,7 @@ $link-sizes: ( $link-s: map-get($link-sizes, "s"); $link-m: map-get($link-sizes, "m"); -@mixin set-link-base() { +@mixin set-link-base { align-items: center; box-sizing: border-box; cursor: pointer; @@ -31,7 +31,7 @@ $link-m: map-get($link-sizes, "m"); } } -@mixin mod-link-sizes() { +@mixin mod-link-sizes { @each $size, $props in $link-sizes { &--#{$size} { @include modify-from-screens($major-screens) { @@ -49,19 +49,25 @@ $link-m: map-get($link-sizes, "m"); @if map-has-key($props, "visited") { &:visited { - color: map-get($props, "visited"); + @include add-demo-state-class { + color: map-get($props, "visited"); + } } } @if map-has-key($props, "hover") { &:hover { - color: map-get($props, "hover"); + @include add-demo-state-class { + color: map-get($props, "hover"); + } } } @if map-has-key($props, "active") { &:active { - color: map-get($props, "active"); + @include add-demo-state-class { + color: map-get($props, "active"); + } } } diff --git a/packages/styles/settings-tools/_s.loader.scss b/packages/styles/settings-tools/_s.loader.scss index d43075c84..7c09ebde9 100644 --- a/packages/styles/settings-tools/_s.loader.scss +++ b/packages/styles/settings-tools/_s.loader.scss @@ -45,6 +45,6 @@ $loader-default-theme: map-get($loader-theme, "primary"); color: $color-loader; #{$parent}__path { - stroke: currentcolor; + stroke: currentColor; } } diff --git a/packages/styles/settings-tools/_s.magic-unit.scss b/packages/styles/settings-tools/_s.magic-unit.scss index eddaa78e7..b148c072b 100644 --- a/packages/styles/settings-tools/_s.magic-unit.scss +++ b/packages/styles/settings-tools/_s.magic-unit.scss @@ -4,9 +4,11 @@ // a function that return a multiple of the magic-unit @function magic-unit($multiplier, $allow-any-value: false) { - @if $allow-any-value { + @if ($allow-any-value) { @return $magic-unit * $multiplier; - } @else { + } + + @else { @if type-of($multiplier) == number and unitless($multiplier) { @if $multiplier < 2 { // require a 0.25 minimum increment when < 2 @@ -14,29 +16,41 @@ @if $iscorrect { @return $magic-unit * $multiplier; - } @else { + } + + @else { @error "magic unit function require a parameter with at least 0.25 increment when inferior to 2"; } - } @else if $multiplier >= 2 and $multiplier < 4 { + } + + @else if $multiplier >= 2 and $multiplier < 4 { // require a 0.5 minimum increment when between 2 and 4 $iscorrect: math.div($multiplier, 0.5) == ceil(math.div($multiplier, 0.5)); @if $iscorrect { @return $magic-unit * $multiplier; - } @else { + } + + @else { @error "magic unit function require a parameter with at least 0.5 increment when between 2 to 4"; } - } @else if $multiplier >= 4 { + } + + @else if $multiplier >= 4 { // require a 1 minimum increment when geater than 4 $iscorrect: $multiplier == ceil($multiplier); @if $iscorrect { @return $magic-unit * $multiplier; - } @else { + } + + @else { @error "magic unit function require an integer as parameter when greater than 4"; } } - } @else { + } + + @else { @error "magic unit function require an unitless number as parameter"; } } diff --git a/packages/styles/settings-tools/_s.notification.scss b/packages/styles/settings-tools/_s.notification.scss index f3bf7f825..a66b20fd1 100644 --- a/packages/styles/settings-tools/_s.notification.scss +++ b/packages/styles/settings-tools/_s.notification.scss @@ -1,6 +1,7 @@ $notification-selector: ".mc-notification"; $notification-close-icon-color: get-token(color, notification, font); $notification-border-width: get-border("s"); + $notification-sizes: ( "s": ( "padding": $mu075 $mu075 $mu150, @@ -17,7 +18,9 @@ $notification-sizes: ( "content-padding-top": $mu025, ), ); + $notification-default-size: map-get($notification-sizes, "m"); + $notification-types: ( "information": ( "background": $color-notification-information-background, @@ -87,6 +90,6 @@ $notification-types: ( } &::before { - background-image: url("#{inline-icons($icon, $icon-color)}"); + background-image: url(inline-icons($icon, $icon-color)); } } diff --git a/packages/styles/settings-tools/_s.overlay.scss b/packages/styles/settings-tools/_s.overlay.scss index 0b9f284ed..34ab22a35 100644 --- a/packages/styles/settings-tools/_s.overlay.scss +++ b/packages/styles/settings-tools/_s.overlay.scss @@ -7,7 +7,6 @@ $z-index-page-overlay: 1999999998; $blur: true ) { background-color: mt-rgba($background-color, 0.7); - @if $blur { filter: blur(1px); } diff --git a/packages/styles/settings-tools/_s.radio.scss b/packages/styles/settings-tools/_s.radio.scss index 9dd2b3f70..d4116b343 100644 --- a/packages/styles/settings-tools/_s.radio.scss +++ b/packages/styles/settings-tools/_s.radio.scss @@ -1,5 +1,5 @@ -$radio-min-width: 20px; -$radio-min-height: 20px; -$radio-width: $mu125; -$radio-height: $mu125; -$radio-border-width: get-border("m"); +$radio-min-width : 20px; +$radio-min-height : 20px; +$radio-width : $mu125; +$radio-height : $mu125; +$radio-border-width : get-border('m'); diff --git a/packages/styles/settings-tools/_s.radius.scss b/packages/styles/settings-tools/_s.radius.scss index 746e222ff..5dd9b12f7 100644 --- a/packages/styles/settings-tools/_s.radius.scss +++ b/packages/styles/settings-tools/_s.radius.scss @@ -1,19 +1,20 @@ -@function get-border-radius($size : "m") { +@function get-border-radius($size : 'm') { @return get-token(radius, $size) * 1px; } -@mixin set-border-radius($size: "m", $side: "all") { +@mixin set-border-radius($size: 'm', $side: 'all') { $px-size: get-border-radius($size); + $sides: ( - "all": $px-size, - "top": $px-size $px-size 0 0, - "bottom": 0 0 $px-size $px-size, - "left": $px-size 0 0 $px-size, - "right": 0 $px-size $px-size 0, - "top-left": $px-size 0 0 0, - "top-right": 0 $px-size 0 0, - "bottom-left": 0 0 0 $px-size, - "bottom-right": 0 0 $px-size 0, + 'all': $px-size, + 'top': $px-size $px-size 0 0, + 'bottom': 0 0 $px-size $px-size, + 'left': $px-size 0 0 $px-size, + 'right': 0 $px-size $px-size 0, + 'top-left': $px-size 0 0 0, + 'top-right': 0 $px-size 0 0, + 'bottom-left': 0 0 0 $px-size, + 'bottom-right': 0 0 $px-size 0, ); border-radius: #{map-get($sides, $side)}; diff --git a/packages/styles/settings-tools/_s.ratio.scss b/packages/styles/settings-tools/_s.ratio.scss index d4cda3753..8059676af 100644 --- a/packages/styles/settings-tools/_s.ratio.scss +++ b/packages/styles/settings-tools/_s.ratio.scss @@ -1,16 +1,16 @@ @use "sass:math"; $aspect-ratios: ( - "1x1": percentage(math.div(1, 1)), - "2x3": percentage(math.div(3, 2)), - "3x2": percentage(math.div(2, 3)), - "3x4": percentage(math.div(4, 3)), - "4x3": percentage(math.div(3, 4)), - "16x9": percentage(math.div(9, 16)), + '1x1': percentage(math.div(1, 1)), + '2x3': percentage(math.div(3, 2)), + '3x2': percentage(math.div(2, 3)), + '3x4': percentage(math.div(4, 3)), + '4x3': percentage(math.div(3, 4)), + '16x9': percentage(math.div(9, 16)), ); @mixin ratio-before() { - content: ""; + content: ''; display: block; width: 100%; } @@ -36,7 +36,9 @@ $aspect-ratios: ( > * { @include ratio-item(); } - } @else { + } + + @else { @warn 'You are trying to use a ratio size that is not supported: "#{$ratio}"'; } } diff --git a/packages/styles/settings-tools/_s.screens.scss b/packages/styles/settings-tools/_s.screens.scss index aebc3579c..0ed097a50 100644 --- a/packages/styles/settings-tools/_s.screens.scss +++ b/packages/styles/settings-tools/_s.screens.scss @@ -7,20 +7,25 @@ $screens: get-token(screen); @media screen and (min-width: get-token(screen, $size)) { @content; } - } @else { - @error "the `#{$size}` key does not exist in the screen map. Please make sure to use an authorized value"; + } + + @else { + @error "the `#{$size}` key does not exist in the screen map." + + "Please make sure to use an authorized value"; } } -$major-screens: ("s", "m", "l", "xl", "xxl"); +$major-screens: ('s', 'm', 'l', 'xl', 'xxl'); // create modifiers from viewport list @mixin modify-from-screens($size-list) { @each $size in $size-list { // 's' == 0, so no breakpoints here - @if $size == "s" { + @if $size == 's' { @content; - } @else { + } + + @else { @include set-from-screen($size) { &\@from-#{$size} { @content; diff --git a/packages/styles/settings-tools/_s.shadows.scss b/packages/styles/settings-tools/_s.shadows.scss index 57b681186..48c1695ec 100644 --- a/packages/styles/settings-tools/_s.shadows.scss +++ b/packages/styles/settings-tools/_s.shadows.scss @@ -1,5 +1,5 @@ @mixin set-box-shadow($size) { - @if variable-exists($name: $size) { + @if (variable-exists($name: $size)) { @warn "Shadow size #{$size} doesn't exist"; } diff --git a/packages/styles/settings-tools/_s.spaces.scss b/packages/styles/settings-tools/_s.spaces.scss index e6b5043f7..0866957d1 100644 --- a/packages/styles/settings-tools/_s.spaces.scss +++ b/packages/styles/settings-tools/_s.spaces.scss @@ -2,23 +2,23 @@ // do not use them anywhere, // it is used internally and may change $sizes: ( - "025": $mu025, - "050": $mu050, - "075": $mu075, - "100": $mu100, - "125": $mu125, - "150": $mu150, - "200": $mu200, - "250": $mu250, - "300": $mu300, - "350": $mu350, - "400": $mu400, - "500": $mu500, - "600": $mu600, - "700": $mu700, - "800": $mu800, - "900": $mu900, - "1000": $mu1000, + '025': $mu025, + '050': $mu050, + '075': $mu075, + '100': $mu100, + '125': $mu125, + '150': $mu150, + '200': $mu200, + '250': $mu250, + '300': $mu300, + '350': $mu350, + '400': $mu400, + '500': $mu500, + '600': $mu600, + '700': $mu700, + '800': $mu800, + '900': $mu900, + '1000': $mu1000, ); // top, right, left, bottom, all, vertical, horizontal @@ -32,12 +32,12 @@ $sides: ( 'h': 'horizontal', ); $props: ( - "m": "margin", - "p": "padding", + 'm': 'margin', + 'p': 'padding', ); @mixin make-space-util($prop, $side, $size) { - @if $side == "all" { + @if ($side == 'all') { .mu-#{$prop}-#{$size} { #{map-get($props, $prop)}: #{map-get($sizes, $size)} !important; } diff --git a/packages/styles/settings-tools/_s.stars.scss b/packages/styles/settings-tools/_s.stars.scss index a74295297..e2d57fc74 100644 --- a/packages/styles/settings-tools/_s.stars.scss +++ b/packages/styles/settings-tools/_s.stars.scss @@ -81,10 +81,10 @@ $stars-default-bg-size: map-deep-get($stars-sizes, "m", "width"); $icon-color-before: $color-star-full; } - background-image: url("#{inline-icons($icon-empty, $icon-color-default)}"); + background-image: url(inline-icons($icon-empty, $icon-color-default)); &::before { - background-image: url("#{inline-icons($icon-full, $icon-color-before)}"); + background-image: url(inline-icons($icon-full, $icon-color-before)); } } diff --git a/packages/styles/settings-tools/_s.stepper.scss b/packages/styles/settings-tools/_s.stepper.scss index 8e8977518..d0201d776 100644 --- a/packages/styles/settings-tools/_s.stepper.scss +++ b/packages/styles/settings-tools/_s.stepper.scss @@ -1,3 +1,7 @@ +$stepper_colors: ( + "campus": $color-primary-02-400, +); + $stepper-divider-gap: $mu150 - $mu025; @mixin set-compact-variation($parent) { diff --git a/packages/styles/settings-tools/_s.tag.scss b/packages/styles/settings-tools/_s.tag.scss index 9f201b811..7c59d3b7f 100644 --- a/packages/styles/settings-tools/_s.tag.scss +++ b/packages/styles/settings-tools/_s.tag.scss @@ -30,7 +30,7 @@ $tag-sizes: ( border-radius: map-get($props, "border-radius"); padding: map-get($props, "padding"); - @include set-focus-floating-base() { + @include set-focus-floating-base { border-radius: (map-get($props, "border-radius") + $size-focus-gap); top: -$size-focus-gap; right: -$size-focus-gap; @@ -40,6 +40,7 @@ $tag-sizes: ( } @mixin set-tag-base-style($size) { + @include set-font-face("regular"); @include set-tag-size($size); display: inline-flex; @@ -59,12 +60,18 @@ $tag-sizes: ( } } -@mixin set-tag-icon-base64($theme: "light") { +@mixin set-tag-icon-B64($theme: "light") { @if $theme == "light" { - background-image: url("#{inline-icons('tag-delete-24', $color-tag-removable-light-icon)}"); + background-image: url(inline-icons( + "tag-delete-24", + $color-tag-removable-light-icon + )); } @if $theme == "dark" { - background-image: url("#{inline-icons('tag-delete-24', $color-tag-removable-dark-icon)}"); + background-image: url(inline-icons( + "tag-delete-24", + $color-tag-removable-dark-icon + )); } } diff --git a/packages/styles/settings-tools/_s.text-input.scss b/packages/styles/settings-tools/_s.text-input.scss index 96676a707..994320ca9 100644 --- a/packages/styles/settings-tools/_s.text-input.scss +++ b/packages/styles/settings-tools/_s.text-input.scss @@ -3,41 +3,43 @@ $input-border-width: 0.0625rem; // get-border('s'); $input-sizes: ( - "s": ( - "font-size": "04", - "line-height": "m", - "padding-v": math.div($mu075, 2), - "padding-h": $mu050 - $input-border-width, + 's': ( + 'font-size': '04', + 'line-height': 'm', + 'padding-v': math.div($mu075, 2), + 'padding-h': $mu050 - $input-border-width, ), - "m": ( - "font-size": "05", - "line-height": "m", - "padding-v": $mu075, - "padding-h": $mu075 - $input-border-width, + 'm': ( + 'font-size': '05', + 'line-height': 'm', + 'padding-v': $mu075, + 'padding-h': $mu075 - $input-border-width, ), ); + $input-icon-sizes: ( - "s": ( - "left": $mu050, - "height": $mu150, - "width": $mu150, - "padding-left": $mu250 - $input-border-width, + 's': ( + 'left': $mu050, + 'height': $mu150, + 'width': $mu150, + 'padding-left': $mu250 - $input-border-width, ), - "m": ( - "left": $mu075, - "height": $mu150, - "width": $mu150, - "padding-left": $mu300 - $input-border-width, + 'm': ( + 'left': $mu075, + 'height': $mu150, + 'width': $mu150, + 'padding-left': $mu300 - $input-border-width, ), ); -$input-default-size: map-get($input-sizes, "m"); -$input-icon-default-size: map-get($input-icon-sizes, "m"); + +$input-default-size: map-get($input-sizes, 'm'); +$input-icon-default-size: map-get($input-icon-sizes, 'm'); @mixin set-input-size($sizeProps) { - $padding-v: map-get($sizeProps, "padding-v"); - $padding-h: map-get($sizeProps, "padding-h"); - $font-size: map-get($sizeProps, "font-size"); - $line-height: map-get($sizeProps, "line-height"); + $padding-v: map-get($sizeProps, 'padding-v'); + $padding-h: map-get($sizeProps, 'padding-h'); + $font-size: map-get($sizeProps, 'font-size'); + $line-height: map-get($sizeProps, 'line-height'); $inner-height: get-token(size, line, $font-size, $line-height); $height: (($padding-v + $input-border-width) * 2) + $inner-height; @@ -48,17 +50,17 @@ $input-icon-default-size: map-get($input-icon-sizes, "m"); &::placeholder { @include set-font-scale( - map-get($sizeProps, "font-size"), - map-get($sizeProps, "line-height") + map-get($sizeProps, 'font-size'), + map-get($sizeProps, 'line-height') ); } } @mixin set-input-icon-size($sizeProps, $parent) { - $left: map-get($sizeProps, "left"); - $height: map-get($sizeProps, "height"); - $width: map-get($sizeProps, "width"); - $padding-left: map-get($sizeProps, "padding-left"); + $left: map-get($sizeProps, 'left'); + $height: map-get($sizeProps, 'height'); + $width: map-get($sizeProps, 'width'); + $padding-left: map-get($sizeProps, 'padding-left'); #{$parent}__icon { left: $left; diff --git a/packages/styles/settings-tools/_s.toggle.scss b/packages/styles/settings-tools/_s.toggle.scss index bf96a695c..3f5568db1 100644 --- a/packages/styles/settings-tools/_s.toggle.scss +++ b/packages/styles/settings-tools/_s.toggle.scss @@ -28,7 +28,6 @@ $toggle-sizes: ( } height: magic-unit-rem($toggle-switch-height); - // add the switch width to the padding padding-left: magic-unit-rem($toggle-switch-width, $allow-any-value: true); diff --git a/packages/styles/settings-tools/_t.colors.scss b/packages/styles/settings-tools/_t.colors.scss index 21e0d7e15..95cd57799 100644 --- a/packages/styles/settings-tools/_t.colors.scss +++ b/packages/styles/settings-tools/_t.colors.scss @@ -16,14 +16,16 @@ } @function mt-rgba($var, $opacity) { - $is-custom-property: str-index(#{$var}, "var"); + $isCSSVar: str-index(#{$var}, "var"); - @if $is-custom-property { - $hexa-color: str-slice($var, str-index($var, "#"), (str-length($var) - 1)); + @if ($isCSSVar) { + $hexaColor: str-slice($var, str-index($var, "#"), (str-length($var) - 1)); $alpha: mt-dectohex(round($opacity * 255)); - @return $hexa-color + $alpha; - } @else { + @return $hexaColor + $alpha; + } + + @else { @return rgba($var, $opacity); } } diff --git a/packages/styles/settings-tools/_t.container.scss b/packages/styles/settings-tools/_t.container.scss index b0e2d6d9a..6b6341b64 100644 --- a/packages/styles/settings-tools/_t.container.scss +++ b/packages/styles/settings-tools/_t.container.scss @@ -1,25 +1,25 @@ -@mixin set-container-fluid() { +@mixin set-container-fluid { margin-left: auto; margin-right: auto; padding-right: $mu100; padding-left: $mu100; - @include set-from-screen("m") { + @include set-from-screen('m') { padding-right: $mu200; padding-left: $mu200; } - @include set-from-screen("l") { + @include set-from-screen('l') { padding-right: $mu300; padding-left: $mu300; } - @include set-from-screen("xl") { + @include set-from-screen('xl') { padding-right: $mu200; padding-left: $mu200; } - @include set-from-screen("xxl") { + @include set-from-screen('xxl') { padding-right: $mu250; padding-left: $mu250; } diff --git a/packages/styles/settings-tools/_t.demo-state-class.scss b/packages/styles/settings-tools/_t.demo-state-class.scss new file mode 100644 index 000000000..5bf11a19c --- /dev/null +++ b/packages/styles/settings-tools/_t.demo-state-class.scss @@ -0,0 +1,31 @@ +@mixin add-demo-state-class { + @if variable-exists('mozaic-env') { + $selector: &; + + $states: ( + ':active', + ':disabled', + ':focus', + ':hover', + ':visited' + ); + + @each $state in $states { + $hasState: str-index('#{$selector}', '#{$state}'); + + @if $hasState { + $stateClass: '.is-' + str-slice('#{$state}', 2, -1); + $newSelector: selector-replace('#{$selector}', '#{$state}', '#{$stateClass}'); + + @at-root #{if($mozaic-env == development, '#{$newSelector},', '')} + #{$selector} { + @content; + } + } + } + } + + @else { + @content; + } +} diff --git a/packages/styles/settings-tools/_t.flexy.scss b/packages/styles/settings-tools/_t.flexy.scss index 4bbc8ca29..a71c3d953 100644 --- a/packages/styles/settings-tools/_t.flexy.scss +++ b/packages/styles/settings-tools/_t.flexy.scss @@ -30,7 +30,6 @@ } /* create columns */ -/* stylelint-disable scss/at-rule-conditional-no-parentheses */ @mixin make-flexy-col($portion, $of, $at-sizes: "s") { @if type-of($portion) != number { @warn "make-flexy-col first param need to be a number"; @@ -91,6 +90,7 @@ } @mixin make-flexy-col-push-reset($at-sizes: "s") { + @if (type-of($at-sizes) != list) and (type-of($at-sizes) != string) { @warn "make-flexy-col-push--reset third param should a map of existing screens, the name of a screen, or 'all'"; } @@ -124,4 +124,3 @@ } } } -/* stylelint-enable scss/at-rule-conditional-no-parentheses */ diff --git a/packages/styles/settings-tools/_t.map-tools.scss b/packages/styles/settings-tools/_t.map-tools.scss index f393a860b..c1de70283 100644 --- a/packages/styles/settings-tools/_t.map-tools.scss +++ b/packages/styles/settings-tools/_t.map-tools.scss @@ -2,10 +2,11 @@ @each $key in $keys { @if map-has-key($map, $key) { $map: map-get($map, $key); - } @else { - @warn 'It seem that you are trying to reach "#{$key}" in map "#{$map}", but it does not exist'; + } - $map: "map error"; + @else { + @warn 'It seem that you are trying to reach "#{$key}" in map "#{$map}", but it does not exist'; + $map: 'map error'; } } diff --git a/packages/styles/settings-tools/_t.reset-forms.scss b/packages/styles/settings-tools/_t.reset-forms.scss index 369763d0c..cac39bfba 100644 --- a/packages/styles/settings-tools/_t.reset-forms.scss +++ b/packages/styles/settings-tools/_t.reset-forms.scss @@ -1,5 +1,6 @@ -@mixin reset-input() { - font-family: inherit; +@mixin reset-input { + @include set-font-face("regular"); + box-sizing: border-box; outline: none; appearance: none; @@ -17,11 +18,10 @@ } /* for mozilla */ - /* stylelint-disable property-no-vendor-prefix, no-duplicate-selectors */ + /* stylelint-disable-next-line */ &[type="number"] { -moz-appearance: textfield; } - /* stylelint-enable property-no-vendor-prefix, no-duplicate-selectors */ &[type="search"] { &::-webkit-search-decoration:hover, diff --git a/packages/styles/settings-tools/_t.selectors.scss b/packages/styles/settings-tools/_t.selectors.scss index fdb70ab79..309857724 100644 --- a/packages/styles/settings-tools/_t.selectors.scss +++ b/packages/styles/settings-tools/_t.selectors.scss @@ -9,6 +9,7 @@ @return $mozaic-class; } @else { @warn "Unknown prefix #{$prefix} in #{$selector} selector."; + @return $selector; } } diff --git a/packages/styles/typography/_t.all-base-typography.scss b/packages/styles/typography/_t.all-base-typography.scss index a694e7227..4ad8e06fb 100644 --- a/packages/styles/typography/_t.all-base-typography.scss +++ b/packages/styles/typography/_t.all-base-typography.scss @@ -1,3 +1,3 @@ -@import "t.bodys"; -@import "t.headings"; -@import "t.heros"; +@import '_t.bodys'; +@import '_t.headings'; +@import '_t.heros'; diff --git a/packages/styles/typography/_t.bodys.scss b/packages/styles/typography/_t.bodys.scss index e87d67716..7de6baf7d 100644 --- a/packages/styles/typography/_t.bodys.scss +++ b/packages/styles/typography/_t.bodys.scss @@ -1,41 +1,41 @@ /* mqp:start */ .mt-body { &-l { - @include set-font-face("regular"); - @include set-font-scale("06"); + @include set-font-face('regular'); + @include set-font-scale('06'); &--line-height-m { - @include set-line-height("06", "m"); + @include set-line-height('06', 'm'); } &--semi-bold { - @include set-font-face("semi-bold"); + @include set-font-face('semi-bold'); } } &-m { - @include set-font-face("regular"); - @include set-font-scale("05"); + @include set-font-face('regular'); + @include set-font-scale('05'); &--line-height-m { - @include set-line-height("05", "m"); + @include set-line-height('05', 'm'); } &--semi-bold { - @include set-font-face("semi-bold"); + @include set-font-face('semi-bold'); } } &-s { - @include set-font-face("regular"); - @include set-font-scale("04"); + @include set-font-face('regular'); + @include set-font-scale('04'); &--line-height-m { - @include set-line-height("04", "m"); + @include set-line-height('04', 'm'); } &--semi-bold { - @include set-font-face("semi-bold"); + @include set-font-face('semi-bold'); } } } diff --git a/packages/styles/typography/_t.headings.scss b/packages/styles/typography/_t.headings.scss index 908de4567..753c418a8 100644 --- a/packages/styles/typography/_t.headings.scss +++ b/packages/styles/typography/_t.headings.scss @@ -2,6 +2,8 @@ .mt-heading { $parent: get-parent-selector(&, ".mt-"); + @include set-font-face("regular"); + color: $color-font-darkest; display: block; margin-bottom: $mu200; @@ -12,23 +14,24 @@ content: ""; display: block; height: $mu025; - background-color: $color-primary-01-500; + background-color: $color-heading-underline-default; } // underline color variations - &--line-primary-02-600::after { - background-color: $color-primary-02-600; - } - - &--line-primary-01-200::after { - background-color: $color-primary-01-200; + &--line-primary-01-200::after, + &--line-lightest::after { + background-color: $color-heading-underline-lightest; } &--line-primary-02-200::after { background-color: $color-primary-02-200; } + &--line-primary-02-600::after { + background-color: $color-primary-02-600; + } + // text alignment &--center { diff --git a/packages/styles/typography/_t.heros.scss b/packages/styles/typography/_t.heros.scss index 68f069f92..b88b607c2 100644 --- a/packages/styles/typography/_t.heros.scss +++ b/packages/styles/typography/_t.heros.scss @@ -1,36 +1,37 @@ /* mqp:start */ .mt-hero { - @include set-font-scale("09"); + @include set-font-face('regular'); + @include set-font-scale('09'); - @include set-from-screen("m") { - @include set-font-scale("10"); + @include set-from-screen('m') { + @include set-font-scale('10'); } - @include set-from-screen("l") { - @include set-font-scale("11"); + @include set-from-screen('l') { + @include set-font-scale('11'); } - @include set-from-screen("xl-medium") { - @include set-font-scale("12"); + @include set-from-screen('xl-medium') { + @include set-font-scale('12'); } &--semi-bold { - @include set-font-weight("semi-bold"); + @include set-font-face('semi-bold'); } &--line-height-s { - @include set-line-height("09", "s"); + @include set-line-height('09', 's'); - @include set-from-screen("m") { - @include set-line-height("10", "s"); + @include set-from-screen('m') { + @include set-line-height('10', 's'); } - @include set-from-screen("l") { - @include set-line-height("11", "s"); + @include set-from-screen('l') { + @include set-line-height('11', 's'); } - @include set-from-screen("xl-medium") { - @include set-line-height("12", "s"); + @include set-from-screen('xl-medium') { + @include set-line-height('12', 's'); } } } diff --git a/packages/styles/utilities/_u.margin.scss b/packages/styles/utilities/_u.margin.scss index 2ee1e234a..7defcd0ae 100644 --- a/packages/styles/utilities/_u.margin.scss +++ b/packages/styles/utilities/_u.margin.scss @@ -1,7 +1,7 @@ /* mqp:start */ @each $sideName, $sideVal in $sides { @each $sizeName, $sizeVal in $sizes { - @include make-space-util("m", $sideName, $sizeName); + @include make-space-util('m', $sideName, $sizeName); } } diff --git a/packages/styles/utilities/_u.padding.scss b/packages/styles/utilities/_u.padding.scss index 17274b548..4710495a0 100644 --- a/packages/styles/utilities/_u.padding.scss +++ b/packages/styles/utilities/_u.padding.scss @@ -1,7 +1,7 @@ /* mqp:start */ @each $sideName, $sideVal in $sides { @each $sizeName, $sizeVal in $sizes { - @include make-space-util("p", $sideName, $sizeName); + @include make-space-util('p', $sideName, $sizeName); } } diff --git a/packages/tokens/src/tokens/adeo/color/base.json b/packages/tokens/AdeoProperties/color/base.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/base.json rename to packages/tokens/AdeoProperties/color/base.json diff --git a/packages/tokens/src/tokens/adeo/color/button.json b/packages/tokens/AdeoProperties/color/button.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/button.json rename to packages/tokens/AdeoProperties/color/button.json diff --git a/packages/tokens/src/tokens/adeo/color/datatable.json b/packages/tokens/AdeoProperties/color/datatable.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/datatable.json rename to packages/tokens/AdeoProperties/color/datatable.json diff --git a/packages/tokens/src/tokens/adeo/color/flag.json b/packages/tokens/AdeoProperties/color/flag.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/flag.json rename to packages/tokens/AdeoProperties/color/flag.json diff --git a/packages/tokens/src/tokens/adeo/color/link.json b/packages/tokens/AdeoProperties/color/link.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/link.json rename to packages/tokens/AdeoProperties/color/link.json diff --git a/packages/tokens/src/tokens/adeo/color/overlay.json b/packages/tokens/AdeoProperties/color/overlay.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/overlay.json rename to packages/tokens/AdeoProperties/color/overlay.json diff --git a/packages/tokens/src/tokens/adeo/color/progressbar.json b/packages/tokens/AdeoProperties/color/progressbar.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/progressbar.json rename to packages/tokens/AdeoProperties/color/progressbar.json diff --git a/packages/tokens/src/tokens/adeo/color/sidebar.json b/packages/tokens/AdeoProperties/color/sidebar.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/sidebar.json rename to packages/tokens/AdeoProperties/color/sidebar.json diff --git a/packages/tokens/src/tokens/adeo/color/tabs.json b/packages/tokens/AdeoProperties/color/tabs.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/tabs.json rename to packages/tokens/AdeoProperties/color/tabs.json diff --git a/packages/tokens/src/tokens/adeo/color/tooltip.json b/packages/tokens/AdeoProperties/color/tooltip.json similarity index 100% rename from packages/tokens/src/tokens/adeo/color/tooltip.json rename to packages/tokens/AdeoProperties/color/tooltip.json diff --git a/packages/tokens/src/tokens/adeo/preset.json b/packages/tokens/AdeoProperties/preset.json similarity index 100% rename from packages/tokens/src/tokens/adeo/preset.json rename to packages/tokens/AdeoProperties/preset.json diff --git a/packages/tokens/src/tokens/bricoman/color/base.json b/packages/tokens/BricomanProperties/color/base.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/base.json rename to packages/tokens/BricomanProperties/color/base.json diff --git a/packages/tokens/src/tokens/bricoman/color/button.json b/packages/tokens/BricomanProperties/color/button.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/button.json rename to packages/tokens/BricomanProperties/color/button.json diff --git a/packages/tokens/src/tokens/bricoman/color/heading.json b/packages/tokens/BricomanProperties/color/heading.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/heading.json rename to packages/tokens/BricomanProperties/color/heading.json diff --git a/packages/tokens/src/tokens/bricoman/color/input.json b/packages/tokens/BricomanProperties/color/input.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/input.json rename to packages/tokens/BricomanProperties/color/input.json diff --git a/packages/tokens/src/tokens/bricoman/color/link.json b/packages/tokens/BricomanProperties/color/link.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/link.json rename to packages/tokens/BricomanProperties/color/link.json diff --git a/packages/tokens/src/tokens/bricoman/color/progressbar.json b/packages/tokens/BricomanProperties/color/progressbar.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/progressbar.json rename to packages/tokens/BricomanProperties/color/progressbar.json diff --git a/packages/tokens/src/tokens/bricoman/color/toggle.json b/packages/tokens/BricomanProperties/color/toggle.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/color/toggle.json rename to packages/tokens/BricomanProperties/color/toggle.json diff --git a/packages/tokens/src/tokens/bricoman/preset.json b/packages/tokens/BricomanProperties/preset.json similarity index 100% rename from packages/tokens/src/tokens/bricoman/preset.json rename to packages/tokens/BricomanProperties/preset.json diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md index 9f00c28b6..3bc644f0d 100644 --- a/packages/tokens/CHANGELOG.md +++ b/packages/tokens/CHANGELOG.md @@ -129,21 +129,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline **Note:** Version bump only for package @mozaic-ds/tokens - - - - -# [2.0.0-rc.0](https://github.com/adeo/mozaic-design-system/compare/v1.24.2...v2.0.0-rc.0) (2022-02-08) - - -### Features - -* **pattern/colors:** add new LM colours ([#999](https://github.com/adeo/mozaic-design-system/issues/999)) ([8854fb8](https://github.com/adeo/mozaic-design-system/commit/8854fb89fda1ecd3d9be10b9fcc7aa102fdc7102)) - - - - - # [1.22.0](https://github.com/adeo/mozaic-design-system/compare/v1.21.0...v1.22.0) (2021-12-22) ### Bug Fixes diff --git a/packages/tokens/src/actions/actions.js b/packages/tokens/actions/actions.js similarity index 100% rename from packages/tokens/src/actions/actions.js rename to packages/tokens/actions/actions.js diff --git a/packages/tokens/bin/build.js b/packages/tokens/bin/build.js index 6187bb606..2f1fcecf8 100755 --- a/packages/tokens/bin/build.js +++ b/packages/tokens/bin/build.js @@ -1,4 +1,4 @@ -#!/usr/bin/env node +#! /usr/bin/env node const tokensBuild = require('../tokensBuild.js') diff --git a/packages/tokens/build/adeo/css/_variables.scss b/packages/tokens/build/adeo/css/_variables.scss deleted file mode 100644 index 1de79c88f..000000000 --- a/packages/tokens/build/adeo/css/_variables.scss +++ /dev/null @@ -1,463 +0,0 @@ -$color-badge-info-background: var(--color-badge-info-background, #daeff7); -$color-badge-info-border: var(--color-badge-info-border, #0b96cc); -$color-badge-info-text: var(--color-badge-info-text, #005c91); -$color-badge-success-background: var(--color-badge-success-background, #ebf5de); -$color-badge-success-border: var(--color-badge-success-border, #46a610); -$color-badge-success-text: var(--color-badge-success-text, #006902); -$color-badge-warning-background: var(--color-badge-warning-background, #fdf1e8); -$color-badge-warning-border: var(--color-badge-warning-border, #ea7315); -$color-badge-warning-text: var(--color-badge-warning-text, #8c3500); -$color-badge-danger-background: var(--color-badge-danger-background, #fdeaea); -$color-badge-danger-border: var(--color-badge-danger-border, #ea302d); -$color-badge-danger-text: var(--color-badge-danger-text, #8c0003); -$color-badge-neutral-background: var(--color-badge-neutral-background, #e6e6e6); -$color-badge-neutral-border: var(--color-badge-neutral-border, #808080); -$color-badge-neutral-text: var(--color-badge-neutral-text, #4d4d4d); -$color-primary-01-100: var(--color-primary-01-100, #d9f0f3); -$color-primary-01-200: var(--color-primary-01-200, #91d5db); -$color-primary-01-300: var(--color-primary-01-300, #48bac4); -$color-primary-01-400: var(--color-primary-01-400, #009eac); -$color-primary-01-500: var(--color-primary-01-500, #00919f); -$color-primary-01-600: var(--color-primary-01-600, #007f8c); -$color-primary-01-700: var(--color-primary-01-700, #006974); -$color-primary-01-800: var(--color-primary-01-800, #004e57); -$color-primary-01-900: var(--color-primary-01-900, #002e33); -$color-primary-02-100: var(--color-primary-02-100, #eeeff1); -$color-primary-02-200: var(--color-primary-02-200, #cfd2d8); -$color-primary-02-300: var(--color-primary-02-300, #b3b7c1); -$color-primary-02-400: var(--color-primary-02-400, #8f94a3); -$color-primary-02-500: var(--color-primary-02-500, #6a7081); -$color-primary-02-600: var(--color-primary-02-600, #494f60); -$color-primary-02-700: var(--color-primary-02-700, #343b4c); -$color-primary-02-800: var(--color-primary-02-800, #242938); -$color-primary-02-900: var(--color-primary-02-900, #171b26); -$color-grey-100: var(--color-grey-100, #e6e6e6); -$color-grey-200: var(--color-grey-200, #cccccc); -$color-grey-300: var(--color-grey-300, #b3b3b3); -$color-grey-400: var(--color-grey-400, #999999); -$color-grey-500: var(--color-grey-500, #808080); -$color-grey-600: var(--color-grey-600, #666666); -$color-grey-700: var(--color-grey-700, #4d4d4d); -$color-grey-800: var(--color-grey-800, #333333); -$color-grey-900: var(--color-grey-900, #191919); -$color-grey-999: var(--color-grey-999, #000000); -$color-grey-000: var(--color-grey-000, #ffffff); -$color-secondary-blue-100: var(--color-secondary-blue-100, #eaedef); -$color-secondary-blue-200: var(--color-secondary-blue-200, #cdd4d8); -$color-secondary-blue-300: var(--color-secondary-blue-300, #b0bbc0); -$color-secondary-blue-400: var(--color-secondary-blue-400, #92a2a9); -$color-secondary-blue-500: var(--color-secondary-blue-500, #758992); -$color-secondary-blue-600: var(--color-secondary-blue-600, #5b737d); -$color-secondary-blue-700: var(--color-secondary-blue-700, #405d68); -$color-secondary-blue-800: var(--color-secondary-blue-800, #264653); -$color-secondary-blue-900: var(--color-secondary-blue-900, #082435); -$color-secondary-green-100: var(--color-secondary-green-100, #d9f0f3); -$color-secondary-green-200: var(--color-secondary-green-200, #91d5db); -$color-secondary-green-300: var(--color-secondary-green-300, #48bac4); -$color-secondary-green-400: var(--color-secondary-green-400, #009eac); -$color-secondary-green-500: var(--color-secondary-green-500, #00919f); -$color-secondary-green-600: var(--color-secondary-green-600, #007f8c); -$color-secondary-green-700: var(--color-secondary-green-700, #006974); -$color-secondary-green-800: var(--color-secondary-green-800, #004e57); -$color-secondary-green-900: var(--color-secondary-green-900, #002e33); -$color-secondary-purple-100: var(--color-secondary-purple-100, #e7e7f0); -$color-secondary-purple-200: var(--color-secondary-purple-200, #c5c5dc); -$color-secondary-purple-300: var(--color-secondary-purple-300, #a4a3c7); -$color-secondary-purple-400: var(--color-secondary-purple-400, #8281b2); -$color-secondary-purple-500: var(--color-secondary-purple-500, #605f9d); -$color-secondary-purple-600: var(--color-secondary-purple-600, #4b4a8c); -$color-secondary-purple-700: var(--color-secondary-purple-700, #393879); -$color-secondary-purple-800: var(--color-secondary-purple-800, #282863); -$color-secondary-purple-900: var(--color-secondary-purple-900, #1a1a4b); -$color-secondary-red-100: var(--color-secondary-red-100, #fdeaea); -$color-secondary-red-200: var(--color-secondary-red-200, #f8bcbb); -$color-secondary-red-300: var(--color-secondary-red-300, #f38d8c); -$color-secondary-red-400: var(--color-secondary-red-400, #ef5f5c); -$color-secondary-red-500: var(--color-secondary-red-500, #ea302d); -$color-secondary-red-600: var(--color-secondary-red-600, #c61112); -$color-secondary-red-700: var(--color-secondary-red-700, #8c0003); -$color-secondary-red-800: var(--color-secondary-red-800, #530000); -$color-secondary-red-900: var(--color-secondary-red-900, #2d0000); -$color-secondary-orange-100: var(--color-secondary-orange-100, #fdf1e8); -$color-secondary-orange-200: var(--color-secondary-orange-200, #f8d2b3); -$color-secondary-orange-300: var(--color-secondary-orange-300, #f4b27e); -$color-secondary-orange-400: var(--color-secondary-orange-400, #ef934a); -$color-secondary-orange-500: var(--color-secondary-orange-500, #ea7315); -$color-secondary-orange-600: var(--color-secondary-orange-600, #c65200); -$color-secondary-orange-700: var(--color-secondary-orange-700, #8c3500); -$color-secondary-orange-800: var(--color-secondary-orange-800, #531b00); -$color-secondary-orange-900: var(--color-secondary-orange-900, #360e00); -$color-secondary-yellow-100: var(--color-secondary-yellow-100, #fff8e2); -$color-secondary-yellow-200: var(--color-secondary-yellow-200, #ffebaf); -$color-secondary-yellow-300: var(--color-secondary-yellow-300, #fee07d); -$color-secondary-yellow-400: var(--color-secondary-yellow-400, #fcd64c); -$color-secondary-yellow-500: var(--color-secondary-yellow-500, #f8cc1c); -$color-secondary-yellow-600: var(--color-secondary-yellow-600, #c9a21b); -$color-secondary-yellow-700: var(--color-secondary-yellow-700, #9c7b18); -$color-secondary-yellow-800: var(--color-secondary-yellow-800, #705613); -$color-secondary-yellow-900: var(--color-secondary-yellow-900, #46350d); -$color-danger-100: var(--color-danger-100, #fdeaea); -$color-danger-200: var(--color-danger-200, #f8bcbb); -$color-danger-300: var(--color-danger-300, #f38d8c); -$color-danger-400: var(--color-danger-400, #ef5f5c); -$color-danger-500: var(--color-danger-500, #ea302d); -$color-danger-600: var(--color-danger-600, #c61112); -$color-danger-700: var(--color-danger-700, #8c0003); -$color-danger-800: var(--color-danger-800, #530000); -$color-danger-900: var(--color-danger-900, #2d0000); -$color-info-100: var(--color-info-100, #daeff7); -$color-info-200: var(--color-info-200, #a7d9ed); -$color-info-300: var(--color-info-300, #73c3e2); -$color-info-400: var(--color-info-400, #3facd7); -$color-info-500: var(--color-info-500, #0b96cc); -$color-info-600: var(--color-info-600, #007bb4); -$color-info-700: var(--color-info-700, #005c91); -$color-info-800: var(--color-info-800, #003a5c); -$color-info-900: var(--color-info-900, #002a41); -$color-warning-100: var(--color-warning-100, #fdf1e8); -$color-warning-200: var(--color-warning-200, #f8d2b3); -$color-warning-300: var(--color-warning-300, #f4b27e); -$color-warning-400: var(--color-warning-400, #ef934a); -$color-warning-500: var(--color-warning-500, #ea7315); -$color-warning-600: var(--color-warning-600, #c65200); -$color-warning-700: var(--color-warning-700, #8c3500); -$color-warning-800: var(--color-warning-800, #531b00); -$color-warning-900: var(--color-warning-900, #360e00); -$color-success-100: var(--color-success-100, #ebf5de); -$color-success-200: var(--color-success-200, #c5e39e); -$color-success-300: var(--color-success-300, #9ed05f); -$color-success-400: var(--color-success-400, #78be20); -$color-success-500: var(--color-success-500, #46a610); -$color-success-600: var(--color-success-600, #188803); -$color-success-700: var(--color-success-700, #006902); -$color-success-800: var(--color-success-800, #035010); -$color-success-900: var(--color-success-900, #023618); -$color-breadcrumb-arrow: var(--color-breadcrumb-arrow, #333333); -$color-breadcrumb-arrow-invert: var(--color-breadcrumb-arrow-invert, #ffffff); -$color-button-solid-background: var(--color-button-solid-background, #007f8c); -$color-button-solid-font: var(--color-button-solid-font, #ffffff); -$color-button-solid-focus-border: var(--color-button-solid-focus-border, #006974); -$color-button-solid-disabled-background: var(--color-button-solid-disabled-background, #cccccc); -$color-button-solid-disabled-font: var(--color-button-solid-disabled-font, #666666); -$color-button-solid-active-background: var(--color-button-solid-active-background, #006974); -$color-button-solid-hover-background: var(--color-button-solid-hover-background, #006974); -$color-button-solid-hover-font: var(--color-button-solid-hover-font, #ffffff); -$color-button-solid-primary-02-background: var(--color-button-solid-primary-02-background, #6a7081); -$color-button-solid-primary-02-font: var(--color-button-solid-primary-02-font, #ffffff); -$color-button-solid-primary-02-focus-border: var(--color-button-solid-primary-02-focus-border, #171b26); -$color-button-solid-primary-02-disabled-background: var(--color-button-solid-primary-02-disabled-background, #cccccc); -$color-button-solid-primary-02-disabled-font: var(--color-button-solid-primary-02-disabled-font, #666666); -$color-button-solid-primary-02-active-background: var(--color-button-solid-primary-02-active-background, #171b26); -$color-button-solid-primary-02-hover-background: var(--color-button-solid-primary-02-hover-background, #242938); -$color-button-solid-primary-02-hover-font: var(--color-button-solid-primary-02-hover-font, #ffffff); -$color-button-solid-neutral-background: var(--color-button-solid-neutral-background, #333333); -$color-button-solid-neutral-font: var(--color-button-solid-neutral-font, #ffffff); -$color-button-solid-neutral-focus-border: var(--color-button-solid-neutral-focus-border, #191919); -$color-button-solid-neutral-disabled-background: var(--color-button-solid-neutral-disabled-background, #cccccc); -$color-button-solid-neutral-disabled-font: var(--color-button-solid-neutral-disabled-font, #666666); -$color-button-solid-neutral-active-background: var(--color-button-solid-neutral-active-background, #333333); -$color-button-solid-neutral-hover-background: var(--color-button-solid-neutral-hover-background, #191919); -$color-button-solid-neutral-hover-font: var(--color-button-solid-neutral-hover-font, #ffffff); -$color-button-solid-danger-background: var(--color-button-solid-danger-background, #c61112); -$color-button-solid-danger-font: var(--color-button-solid-danger-font, #ffffff); -$color-button-solid-danger-focus-border: var(--color-button-solid-danger-focus-border, #8c0003); -$color-button-solid-danger-disabled-background: var(--color-button-solid-danger-disabled-background, #cccccc); -$color-button-solid-danger-disabled-font: var(--color-button-solid-danger-disabled-font, #666666); -$color-button-solid-danger-active-background: var(--color-button-solid-danger-active-background, #8c0003); -$color-button-solid-danger-hover-background: var(--color-button-solid-danger-hover-background, #8c0003); -$color-button-solid-danger-hover-font: var(--color-button-solid-danger-hover-font, #ffffff); -$color-button-bordered-background: var(--color-button-bordered-background, #ffffff); -$color-button-bordered-border: var(--color-button-bordered-border, #007f8c); -$color-button-bordered-font: var(--color-button-bordered-font, #007f8c); -$color-button-bordered-focus-border: var(--color-button-bordered-focus-border, #006974); -$color-button-bordered-disabled-background: var(--color-button-bordered-disabled-background, #cccccc); -$color-button-bordered-disabled-font: var(--color-button-bordered-disabled-font, #666666); -$color-button-bordered-active-background: var(--color-button-bordered-active-background, #91d5db); -$color-button-bordered-active-font: var(--color-button-bordered-active-font, #004e57); -$color-button-bordered-hover-background: var(--color-button-bordered-hover-background, #d9f0f3); -$color-button-bordered-hover-font: var(--color-button-bordered-hover-font, #006974); -$color-button-bordered-primary-02-background: var(--color-button-bordered-primary-02-background, #ffffff); -$color-button-bordered-primary-02-border: var(--color-button-bordered-primary-02-border, #6a7081); -$color-button-bordered-primary-02-font: var(--color-button-bordered-primary-02-font, #6a7081); -$color-button-bordered-primary-02-focus-border: var(--color-button-bordered-primary-02-focus-border, #171b26); -$color-button-bordered-primary-02-disabled-background: var(--color-button-bordered-primary-02-disabled-background, #cccccc); -$color-button-bordered-primary-02-disabled-font: var(--color-button-bordered-primary-02-disabled-font, #666666); -$color-button-bordered-primary-02-active-background: var(--color-button-bordered-primary-02-active-background, #cfd2d8); -$color-button-bordered-primary-02-hover-background: var(--color-button-bordered-primary-02-hover-background, #eeeff1); -$color-button-bordered-neutral-background: var(--color-button-bordered-neutral-background, #ffffff); -$color-button-bordered-neutral-border: var(--color-button-bordered-neutral-border, #333333); -$color-button-bordered-neutral-font: var(--color-button-bordered-neutral-font, #333333); -$color-button-bordered-neutral-focus-border: var(--color-button-bordered-neutral-focus-border, #191919); -$color-button-bordered-neutral-disabled-background: var(--color-button-bordered-neutral-disabled-background, #cccccc); -$color-button-bordered-neutral-disabled-font: var(--color-button-bordered-neutral-disabled-font, #666666); -$color-button-bordered-neutral-active-background: var(--color-button-bordered-neutral-active-background, #cccccc); -$color-button-bordered-neutral-hover-background: var(--color-button-bordered-neutral-hover-background, #e6e6e6); -$color-button-bordered-danger-background: var(--color-button-bordered-danger-background, #ffffff); -$color-button-bordered-danger-border: var(--color-button-bordered-danger-border, #c61112); -$color-button-bordered-danger-font: var(--color-button-bordered-danger-font, #c61112); -$color-button-bordered-danger-focus-border: var(--color-button-bordered-danger-focus-border, #8c0003); -$color-button-bordered-danger-disabled-background: var(--color-button-bordered-danger-disabled-background, #cccccc); -$color-button-bordered-danger-disabled-font: var(--color-button-bordered-danger-disabled-font, #666666); -$color-button-bordered-danger-active-background: var(--color-button-bordered-danger-active-background, #f8bcbb); -$color-button-bordered-danger-active-font: var(--color-button-bordered-danger-active-font, #530000); -$color-button-bordered-danger-hover-background: var(--color-button-bordered-danger-hover-background, #fdeaea); -$color-button-bordered-danger-hover-font: var(--color-button-bordered-danger-hover-font, #8c0003); -$color-card-bordered-background: var(--color-card-bordered-background, #ffffff); -$color-card-bordered-border: var(--color-card-bordered-border, #808080); -$color-datatable-filters-border: var(--color-datatable-filters-border, #b0bbc0); -$color-datatable-container-background: var(--color-datatable-container-background, #e7e7f0); -$color-datatable-thead-font: var(--color-datatable-thead-font, #393879); -$color-datatable-sort-arrow-default: var(--color-datatable-sort-arrow-default, #cdd4d8); -$color-datatable-sort-arrow-active: var(--color-datatable-sort-arrow-active, #605f9d); -$color-datatable-cell-font: var(--color-datatable-cell-font, #191919); -$color-datatable-cell-background-hover: var(--color-datatable-cell-background-hover, #eaedef); -$color-datatable-cell-background-selected: var(--color-datatable-cell-background-selected, #d9f0f3); -$color-datatable-subtable-background: var(--color-datatable-subtable-background, #e7e7f0); -$color-datatable-subtable-border: var(--color-datatable-subtable-border, #a4a3c7); -$color-datatable-subtable-font: var(--color-datatable-subtable-font, #1a1a4b); -$color-datatable-icon: var(--color-datatable-icon, #007f8c); -$color-dialog-background: var(--color-dialog-background, #ffffff); -$color-dialog-icon: var(--color-dialog-icon, #666666); -$color-dialog-close: var(--color-dialog-close, #808080); -$color-dialog-footer-shadow: var(--color-dialog-footer-shadow, #191919); -$color-divider-lightest: var(--color-divider-lightest, #ffffff); -$color-divider-light: var(--color-divider-light, #b3b3b3); -$color-divider-default: var(--color-divider-default, #666666); -$color-divider-dark: var(--color-divider-dark, #000000); -$color-fields-error: var(--color-fields-error, #c61112); -$color-fields-label: var(--color-fields-label, #333333); -$color-fields-requirement: var(--color-fields-requirement, #666666); -$color-fields-help: var(--color-fields-help, #666666); -$color-fileuploader-font: var(--color-fileuploader-font, #000000); -$color-fileuploader-files-list: var(--color-fileuploader-files-list, #e6e6e6); -$color-fileuploader-files-delete: var(--color-fileuploader-files-delete, #cccccc); -$color-fileuploader-valid: var(--color-fileuploader-valid, #00919f); -$color-fileuploader-alert: var(--color-fileuploader-alert, #c61112); -$color-flag-solid-background: var(--color-flag-solid-background, #007f8c); -$color-flag-solid-border: var(--color-flag-solid-border, #007f8c); -$color-flag-solid-text: var(--color-flag-solid-text, #ffffff); -$color-flag-solid-primary-02-background: var(--color-flag-solid-primary-02-background, #4b4a8c); -$color-flag-solid-primary-02-border: var(--color-flag-solid-primary-02-border, #4b4a8c); -$color-flag-solid-primary-02-text: var(--color-flag-solid-primary-02-text, #ffffff); -$color-flag-solid-dark-background: var(--color-flag-solid-dark-background, #000000); -$color-flag-solid-dark-border: var(--color-flag-solid-dark-border, #000000); -$color-flag-solid-dark-text: var(--color-flag-solid-dark-text, #ffffff); -$color-flag-solid-light-background: var(--color-flag-solid-light-background, #ffffff); -$color-flag-solid-light-border: var(--color-flag-solid-light-border, #ffffff); -$color-flag-solid-light-text: var(--color-flag-solid-light-text, #000000); -$color-flag-solid-danger-background: var(--color-flag-solid-danger-background, #c61112); -$color-flag-solid-danger-border: var(--color-flag-solid-danger-border, #c61112); -$color-flag-solid-danger-text: var(--color-flag-solid-danger-text, #ffffff); -$color-flag-bordered-background: var(--color-flag-bordered-background, #ffffff); -$color-flag-bordered-border: var(--color-flag-bordered-border, #007f8c); -$color-flag-bordered-text: var(--color-flag-bordered-text, #007f8c); -$color-flag-bordered-primary-02-background: var(--color-flag-bordered-primary-02-background, #ffffff); -$color-flag-bordered-primary-02-border: var(--color-flag-bordered-primary-02-border, #4b4a8c); -$color-flag-bordered-primary-02-text: var(--color-flag-bordered-primary-02-text, #4b4a8c); -$color-flag-bordered-dark-background: var(--color-flag-bordered-dark-background, #ffffff); -$color-flag-bordered-dark-border: var(--color-flag-bordered-dark-border, #000000); -$color-flag-bordered-dark-text: var(--color-flag-bordered-dark-text, #000000); -$color-flag-bordered-light-background: var(--color-flag-bordered-light-background, #000000); -$color-flag-bordered-light-border: var(--color-flag-bordered-light-border, #ffffff); -$color-flag-bordered-light-text: var(--color-flag-bordered-light-text, #ffffff); -$color-flag-bordered-danger-background: var(--color-flag-bordered-danger-background, #ffffff); -$color-flag-bordered-danger-border: var(--color-flag-bordered-danger-border, #c61112); -$color-flag-bordered-danger-text: var(--color-flag-bordered-danger-text, #c61112); -$color-focus-gap: var(--color-focus-gap, #ffffff); -$color-focus-border: var(--color-focus-border, #758992); -$color-font-primary-01: var(--color-font-primary-01, #007f8c); -$color-font-primary-02: var(--color-font-primary-02, #6a7081); -$color-font-darkest: var(--color-font-darkest, #000000); -$color-font-darker: var(--color-font-darker, #191919); -$color-font-dark: var(--color-font-dark, #333333); -$color-font-light: var(--color-font-light, #666666); -$color-font-lightest: var(--color-font-lightest, #ffffff); -$color-font-info: var(--color-font-info, #007bb4); -$color-font-success: var(--color-font-success, #188803); -$color-font-warning: var(--color-font-warning, #c65200); -$color-font-danger: var(--color-font-danger, #c61112); -$color-heading-underline-default: var(--color-heading-underline-default, #00919f); -$color-heading-underline-lightest: var(--color-heading-underline-lightest, #91d5db); -$color-hero-cover-background: var(--color-hero-cover-background, #191919); -$color-input-text: var(--color-input-text, #191919); -$color-input-border: var(--color-input-border, #666666); -$color-input-placeholder: var(--color-input-placeholder, #666666); -$color-input-background: var(--color-input-background, #ffffff); -$color-input-disabled-background: var(--color-input-disabled-background, #e6e6e6); -$color-input-disabled-border: var(--color-input-disabled-border, #e6e6e6); -$color-input-disabled-icon: var(--color-input-disabled-icon, #999999); -$color-input-disabled-label: var(--color-input-disabled-label, #808080); -$color-input-hover-border: var(--color-input-hover-border, #191919); -$color-input-focus-border: var(--color-input-focus-border, #758992); -$color-input-valid-border: var(--color-input-valid-border, #46a610); -$color-input-valid-hover-border: var(--color-input-valid-hover-border, #035010); -$color-input-invalid-border: var(--color-input-invalid-border, #c61112); -$color-input-invalid-hover-border: var(--color-input-invalid-hover-border, #530000); -$color-input-checked-border: var(--color-input-checked-border, #00919f); -$color-input-checked-background: var(--color-input-checked-background, #00919f); -$color-input-checked-icon: var(--color-input-checked-icon, #ffffff); -$color-input-checked-hover-border: var(--color-input-checked-hover-border, #004e57); -$color-link-dark-base: var(--color-link-dark-base, #000000); -$color-link-dark-visited: var(--color-link-dark-visited, #333333); -$color-link-dark-active: var(--color-link-dark-active, #333333); -$color-link-dark-disabled: var(--color-link-dark-disabled, #e6e6e6); -$color-link-dark-hover: var(--color-link-dark-hover, #666666); -$color-link-light-base: var(--color-link-light-base, #ffffff); -$color-link-light-visited: var(--color-link-light-visited, #cccccc); -$color-link-light-active: var(--color-link-light-active, #cccccc); -$color-link-light-disabled: var(--color-link-light-disabled, #e6e6e6); -$color-link-light-hover: var(--color-link-light-hover, #999999); -$color-link-primary-base: var(--color-link-primary-base, #007f8c); -$color-link-primary-visited: var(--color-link-primary-visited, #006974); -$color-link-primary-active: var(--color-link-primary-active, #006974); -$color-link-primary-disabled: var(--color-link-primary-disabled, #e6e6e6); -$color-link-primary-hover: var(--color-link-primary-hover, #004e57); -$color-link-primary-02-base: var(--color-link-primary-02-base, #494f60); -$color-link-primary-02-visited: var(--color-link-primary-02-visited, #343b4c); -$color-link-primary-02-active: var(--color-link-primary-02-active, #343b4c); -$color-link-primary-02-disabled: var(--color-link-primary-02-disabled, #e6e6e6); -$color-link-primary-02-hover: var(--color-link-primary-02-hover, #171b26); -$color-link-danger-base: var(--color-link-danger-base, #c61112); -$color-link-danger-visited: var(--color-link-danger-visited, #8c0003); -$color-link-danger-active: var(--color-link-danger-active, #8c0003); -$color-link-danger-disabled: var(--color-link-danger-disabled, #e6e6e6); -$color-link-danger-hover: var(--color-link-danger-hover, #530000); -$color-listbox-background: var(--color-listbox-background, #ffffff); -$color-listbox-border: var(--color-listbox-border, #666666); -$color-listbox-tile-border: var(--color-listbox-tile-border, #b3b3b3); -$color-listbox-tile-shadow: var(--color-listbox-tile-shadow, #191919); -$color-listbox-tile-hover-background: var(--color-listbox-tile-hover-background, #e6e6e6); -$color-listbox-disabled-background: var(--color-listbox-disabled-background, #cccccc); -$color-notification-font: var(--color-notification-font, #000000); -$color-notification-information-background: var(--color-notification-information-background, #daeff7); -$color-notification-information-border: var(--color-notification-information-border, #0b96cc); -$color-notification-information-icon: var(--color-notification-information-icon, #007bb4); -$color-notification-success-background: var(--color-notification-success-background, #ebf5de); -$color-notification-success-border: var(--color-notification-success-border, #46a610); -$color-notification-success-icon: var(--color-notification-success-icon, #188803); -$color-notification-warning-background: var(--color-notification-warning-background, #fdf1e8); -$color-notification-warning-border: var(--color-notification-warning-border, #ea7315); -$color-notification-warning-icon: var(--color-notification-warning-icon, #c65200); -$color-notification-danger-background: var(--color-notification-danger-background, #fdeaea); -$color-notification-danger-border: var(--color-notification-danger-border, #ea302d); -$color-notification-danger-icon: var(--color-notification-danger-icon, #c61112); -$color-option-button-label-shadow: var(--color-option-button-label-shadow, #b3b3b3); -$color-option-button-hover-label-shadow: var(--color-option-button-hover-label-shadow, #333333); -$color-option-button-checked-label-border: var(--color-option-button-checked-label-border, #00919f); -$color-option-button-checked-label-shadow: var(--color-option-button-checked-label-shadow, #d9f0f3); -$color-option-button-disabled-label-background: var(--color-option-button-disabled-label-background, #cccccc); -$color-option-card-label-shadow: var(--color-option-card-label-shadow, #b3b3b3); -$color-option-card-hover-label-shadow: var(--color-option-card-hover-label-shadow, #333333); -$color-option-card-checked-label-border: var(--color-option-card-checked-label-border, #00919f); -$color-option-card-checked-label-shadow: var(--color-option-card-checked-label-shadow, #d9f0f3); -$color-option-card-disabled-content: var(--color-option-card-disabled-content, #cccccc); -$color-option-card-disabled-label: var(--color-option-card-disabled-label, #666666); -$color-overlay-background: var(--color-overlay-background, #191919); -$color-overlay-loader-background: var(--color-overlay-loader-background, #082435); -$color-password-input-button-hover-background: var(--color-password-input-button-hover-background, #e6e6e6); -$color-phone-number-button-border: var(--color-phone-number-button-border, #666666); -$color-phone-number-list-background: var(--color-phone-number-list-background, #ffffff); -$color-phone-number-item-border: var(--color-phone-number-item-border, #b3b3b3); -$color-phone-number-item-focus-background: var(--color-phone-number-item-focus-background, #e6e6e6); -$color-progress-background: var(--color-progress-background, #cccccc); -$color-progress-indicator: var(--color-progress-indicator, #007bb4); -$color-progress-percentage-default: var(--color-progress-percentage-default, #191919); -$color-progress-percentage-half: var(--color-progress-percentage-half, #ffffff); -$color-progress-branded-indicator: var(--color-progress-branded-indicator, #00919f); -$color-star-empty: var(--color-star-empty, #ffffff); -$color-star-focus: var(--color-star-focus, #758992); -$color-star-full: var(--color-star-full, #ea7315); -$color-star-hover: var(--color-star-hover, #f4b27e); -$color-stepper-item-background: var(--color-stepper-item-background, #999999); -$color-stepper-item-current-background: var(--color-stepper-item-current-background, #00919f); -$color-stepper-link-hover-text: var(--color-stepper-link-hover-text, #00919f); -$color-stepper-indicator-background: var(--color-stepper-indicator-background, #ffffff); -$color-stepper-indicator-border: var(--color-stepper-indicator-border, #999999); -$color-stepper-indicator-current-background: var(--color-stepper-indicator-current-background, #00919f); -$color-stepper-indicator-current-border: var(--color-stepper-indicator-current-border, #00919f); -$color-stepper-icon: var(--color-stepper-icon, #00919f); -$color-stepper-title: var(--color-stepper-title, #00919f); -$color-tabs-background: var(--color-tabs-background, #ffffff); -$color-tabs-shadow: var(--color-tabs-shadow, #000000); -$color-tabs-default: var(--color-tabs-default, #666666); -$color-tabs-element-background: var(--color-tabs-element-background, #eeedea); -$color-tabs-hover: var(--color-tabs-hover, #004e57); -$color-tabs-disabled-background: var(--color-tabs-disabled-background, #cccccc); -$color-tabs-active-background: var(--color-tabs-active-background, #dddcd5); -$color-tabs-active-text: var(--color-tabs-active-text, #004e57); -$color-tabs-selected-border: var(--color-tabs-selected-border, #007f8c); -$color-tabs-selected-text: var(--color-tabs-selected-text, #007f8c); -$color-tabs-active-disabled: var(--color-tabs-active-disabled, #91d5db); -$color-tag-text-light-background: var(--color-tag-text-light-background, #ffffff); -$color-tag-text-light-border: var(--color-tag-text-light-border, #808080); -$color-tag-text-light-text: var(--color-tag-text-light-text, #191919); -$color-tag-text-dark-background: var(--color-tag-text-dark-background, #191919); -$color-tag-text-dark-border: var(--color-tag-text-dark-border, #ffffff); -$color-tag-text-dark-text: var(--color-tag-text-dark-text, #ffffff); -$color-tag-link-light-background: var(--color-tag-link-light-background, #ffffff); -$color-tag-link-light-border: var(--color-tag-link-light-border, #808080); -$color-tag-link-light-text: var(--color-tag-link-light-text, #191919); -$color-tag-link-light-hover-background: var(--color-tag-link-light-hover-background, #e6e6e6); -$color-tag-link-light-active-background: var(--color-tag-link-light-active-background, #cccccc); -$color-tag-link-dark-background: var(--color-tag-link-dark-background, #191919); -$color-tag-link-dark-border: var(--color-tag-link-dark-border, #ffffff); -$color-tag-link-dark-text: var(--color-tag-link-dark-text, #ffffff); -$color-tag-link-dark-hover-background: var(--color-tag-link-dark-hover-background, #333333); -$color-tag-link-dark-active-background: var(--color-tag-link-dark-active-background, #4d4d4d); -$color-tag-selectable-light-background: var(--color-tag-selectable-light-background, #ffffff); -$color-tag-selectable-light-border: var(--color-tag-selectable-light-border, #808080); -$color-tag-selectable-light-text: var(--color-tag-selectable-light-text, #191919); -$color-tag-selectable-light-hover-background: var(--color-tag-selectable-light-hover-background, #48bac4); -$color-tag-selectable-light-active-background: var(--color-tag-selectable-light-active-background, #004e57); -$color-tag-selectable-light-active-border: var(--color-tag-selectable-light-active-border, #004e57); -$color-tag-selectable-light-active-text: var(--color-tag-selectable-light-active-text, #ffffff); -$color-tag-selectable-light-disabled-background: var(--color-tag-selectable-light-disabled-background, #e6e6e6); -$color-tag-selectable-light-disabled-text: var(--color-tag-selectable-light-disabled-text, #808080); -$color-tag-selectable-light-selected-background: var(--color-tag-selectable-light-selected-background, #007f8c); -$color-tag-selectable-light-selected-text: var(--color-tag-selectable-light-selected-text, #ffffff); -$color-tag-selectable-light-selected-hover-background: var(--color-tag-selectable-light-selected-hover-background, #006974); -$color-tag-selectable-dark-background: var(--color-tag-selectable-dark-background, #191919); -$color-tag-selectable-dark-border: var(--color-tag-selectable-dark-border, #ffffff); -$color-tag-selectable-dark-text: var(--color-tag-selectable-dark-text, #ffffff); -$color-tag-selectable-dark-hover-background: var(--color-tag-selectable-dark-hover-background, #006974); -$color-tag-selectable-dark-active-background: var(--color-tag-selectable-dark-active-background, #91d5db); -$color-tag-selectable-dark-active-border: var(--color-tag-selectable-dark-active-border, #91d5db); -$color-tag-selectable-dark-active-text: var(--color-tag-selectable-dark-active-text, #191919); -$color-tag-selectable-dark-selected-background: var(--color-tag-selectable-dark-selected-background, #009eac); -$color-tag-selectable-dark-selected-border: var(--color-tag-selectable-dark-selected-border, #009eac); -$color-tag-selectable-dark-selected-text: var(--color-tag-selectable-dark-selected-text, #191919); -$color-tag-selectable-dark-selected-hover-background: var(--color-tag-selectable-dark-selected-hover-background, #48bac4); -$color-tag-selectable-dark-disabled-background: var(--color-tag-selectable-dark-disabled-background, #4d4d4d); -$color-tag-selectable-dark-disabled-text: var(--color-tag-selectable-dark-disabled-text, #808080); -$color-tag-removable-light-background: var(--color-tag-removable-light-background, #333333); -$color-tag-removable-light-text: var(--color-tag-removable-light-text, #ffffff); -$color-tag-removable-light-icon: var(--color-tag-removable-light-icon, #cccccc); -$color-tag-removable-light-hover-background: var(--color-tag-removable-light-hover-background, #4d4d4d); -$color-tag-removable-light-active-background: var(--color-tag-removable-light-active-background, #666666); -$color-tag-removable-dark-background: var(--color-tag-removable-dark-background, #cccccc); -$color-tag-removable-dark-text: var(--color-tag-removable-dark-text, #191919); -$color-tag-removable-dark-icon: var(--color-tag-removable-dark-icon, #191919); -$color-tag-removable-dark-hover-background: var(--color-tag-removable-dark-hover-background, #b3b3b3); -$color-tag-removable-dark-active-background: var(--color-tag-removable-dark-active-background, #999999); -$color-toggle-label: var(--color-toggle-label, #000000); -$color-toggle-off-background: var(--color-toggle-off-background, #666666); -$color-toggle-off-circle: var(--color-toggle-off-circle, #ffffff); -$color-toggle-on-background: var(--color-toggle-on-background, #00919f); -$color-toggle-on-circle: var(--color-toggle-on-circle, #ffffff); -$color-toggle-hover-circle: var(--color-toggle-hover-circle, #e6e6e6); -$color-toggle-disabled-background: var(--color-toggle-disabled-background, #e6e6e6); -$color-toggle-disabled-circle: var(--color-toggle-disabled-circle, #b3b3b3); -$color-toggle-disabled-label: var(--color-toggle-disabled-label, #808080); -$color-toggle-disabled-checked-background: var(--color-toggle-disabled-checked-background, #91d5db); -$color-toggle-disabled-checked-circle: var(--color-toggle-disabled-checked-circle, #ffffff); -$color-tooltip-background: var(--color-tooltip-background, #5b737d); -$color-tooltip-border: var(--color-tooltip-border, #ffffff); -$color-secondary-sandgrey-100: var(--color-secondary-sandgrey-100, #eeedea); -$color-secondary-sandgrey-200: var(--color-secondary-sandgrey-200, #dddcd5); -$color-secondary-sandgrey-300: var(--color-secondary-sandgrey-300, #c2c1ba); -$color-secondary-sandgrey-400: var(--color-secondary-sandgrey-400, #a7a6a0); -$color-secondary-sandgrey-500: var(--color-secondary-sandgrey-500, #8c8b85); -$color-secondary-sandgrey-600: var(--color-secondary-sandgrey-600, #71706b); -$color-secondary-sandgrey-700: var(--color-secondary-sandgrey-700, #555550); -$color-secondary-sandgrey-800: var(--color-secondary-sandgrey-800, #3a3936); -$color-secondary-sandgrey-900: var(--color-secondary-sandgrey-900, #1e1e1c); diff --git a/packages/tokens/build/adeo/css/root.scss b/packages/tokens/build/adeo/css/root.scss deleted file mode 100644 index 3d1ee4f72..000000000 --- a/packages/tokens/build/adeo/css/root.scss +++ /dev/null @@ -1,465 +0,0 @@ -:root { - --color-secondary-sandgrey-900: #1e1e1c; - --color-secondary-sandgrey-800: #3a3936; - --color-secondary-sandgrey-700: #555550; - --color-secondary-sandgrey-600: #71706b; - --color-secondary-sandgrey-500: #8c8b85; - --color-secondary-sandgrey-400: #a7a6a0; - --color-secondary-sandgrey-300: #c2c1ba; - --color-secondary-sandgrey-200: #dddcd5; - --color-secondary-sandgrey-100: #eeedea; - --color-star-full: #ea7315; - --color-success-900: #023618; - --color-success-800: #035010; - --color-success-700: #006902; - --color-success-600: #188803; - --color-success-500: #46a610; - --color-success-400: #78be20; - --color-success-300: #9ed05f; - --color-success-200: #c5e39e; - --color-success-100: #ebf5de; - --color-warning-900: #360e00; - --color-warning-800: #531b00; - --color-warning-700: #8c3500; - --color-warning-600: #c65200; - --color-warning-500: #ea7315; - --color-warning-400: #ef934a; - --color-warning-300: #f4b27e; - --color-warning-200: #f8d2b3; - --color-warning-100: #fdf1e8; - --color-info-900: #002a41; - --color-info-800: #003a5c; - --color-info-700: #005c91; - --color-info-600: #007bb4; - --color-info-500: #0b96cc; - --color-info-400: #3facd7; - --color-info-300: #73c3e2; - --color-info-200: #a7d9ed; - --color-info-100: #daeff7; - --color-danger-900: #2d0000; - --color-danger-800: #530000; - --color-danger-700: #8c0003; - --color-danger-600: #c61112; - --color-danger-500: #ea302d; - --color-danger-400: #ef5f5c; - --color-danger-300: #f38d8c; - --color-danger-200: #f8bcbb; - --color-danger-100: #fdeaea; - --color-secondary-yellow-900: #46350d; - --color-secondary-yellow-800: #705613; - --color-secondary-yellow-700: #9c7b18; - --color-secondary-yellow-600: #c9a21b; - --color-secondary-yellow-500: #f8cc1c; - --color-secondary-yellow-400: #fcd64c; - --color-secondary-yellow-300: #fee07d; - --color-secondary-yellow-200: #ffebaf; - --color-secondary-yellow-100: #fff8e2; - --color-secondary-orange-900: #360e00; - --color-secondary-orange-800: #531b00; - --color-secondary-orange-700: #8c3500; - --color-secondary-orange-600: #c65200; - --color-secondary-orange-500: #ea7315; - --color-secondary-orange-400: #ef934a; - --color-secondary-orange-300: #f4b27e; - --color-secondary-orange-200: #f8d2b3; - --color-secondary-orange-100: #fdf1e8; - --color-secondary-red-900: #2d0000; - --color-secondary-red-800: #530000; - --color-secondary-red-700: #8c0003; - --color-secondary-red-600: #c61112; - --color-secondary-red-500: #ea302d; - --color-secondary-red-400: #ef5f5c; - --color-secondary-red-300: #f38d8c; - --color-secondary-red-200: #f8bcbb; - --color-secondary-red-100: #fdeaea; - --color-secondary-purple-900: #1a1a4b; - --color-secondary-purple-800: #282863; - --color-secondary-purple-700: #393879; - --color-secondary-purple-600: #4b4a8c; - --color-secondary-purple-500: #605f9d; - --color-secondary-purple-400: #8281b2; - --color-secondary-purple-300: #a4a3c7; - --color-secondary-purple-200: #c5c5dc; - --color-secondary-purple-100: #e7e7f0; - --color-secondary-blue-900: #082435; - --color-secondary-blue-800: #264653; - --color-secondary-blue-700: #405d68; - --color-secondary-blue-600: #5b737d; - --color-secondary-blue-500: #758992; - --color-secondary-blue-400: #92a2a9; - --color-secondary-blue-300: #b0bbc0; - --color-secondary-blue-200: #cdd4d8; - --color-secondary-blue-100: #eaedef; - --color-grey-000: #ffffff; - --color-grey-999: #000000; - --color-grey-900: #191919; - --color-grey-800: #333333; - --color-grey-700: #4d4d4d; - --color-grey-600: #666666; - --color-grey-500: #808080; - --color-grey-400: #999999; - --color-grey-300: #b3b3b3; - --color-grey-200: #cccccc; - --color-grey-100: #e6e6e6; - --color-primary-02-900: #171b26; - --color-primary-02-800: #242938; - --color-primary-02-700: #343b4c; - --color-primary-02-600: #494f60; - --color-primary-02-500: #6a7081; - --color-primary-02-400: #8f94a3; - --color-primary-02-300: #b3b7c1; - --color-primary-02-200: #cfd2d8; - --color-primary-02-100: #eeeff1; - --color-primary-01-900: #002e33; - --color-primary-01-800: #004e57; - --color-primary-01-700: #006974; - --color-primary-01-600: #007f8c; - --color-primary-01-500: #00919f; - --color-primary-01-400: #009eac; - --color-primary-01-300: #48bac4; - --color-primary-01-200: #91d5db; - --color-primary-01-100: #d9f0f3; - --color-tooltip-border: var(--color-grey-000); - --color-tooltip-background: var(--color-secondary-blue-600); - --color-toggle-disabled-checked-circle: var(--color-grey-000); - --color-toggle-disabled-checked-background: var(--color-primary-01-200); - --color-toggle-disabled-label: var(--color-grey-500); - --color-toggle-disabled-circle: var(--color-grey-300); - --color-toggle-disabled-background: var(--color-grey-100); - --color-toggle-hover-circle: var(--color-grey-100); - --color-toggle-on-circle: var(--color-grey-000); - --color-toggle-on-background: var(--color-primary-01-500); - --color-toggle-off-circle: var(--color-grey-000); - --color-toggle-off-background: var(--color-grey-600); - --color-toggle-label: var(--color-grey-999); - --color-tag-removable-dark-active-background: var(--color-grey-400); - --color-tag-removable-dark-hover-background: var(--color-grey-300); - --color-tag-removable-dark-icon: var(--color-grey-900); - --color-tag-removable-dark-text: var(--color-grey-900); - --color-tag-removable-dark-background: var(--color-grey-200); - --color-tag-removable-light-active-background: var(--color-grey-600); - --color-tag-removable-light-hover-background: var(--color-grey-700); - --color-tag-removable-light-icon: var(--color-grey-200); - --color-tag-removable-light-text: var(--color-grey-000); - --color-tag-removable-light-background: var(--color-grey-800); - --color-tag-selectable-dark-disabled-text: var(--color-grey-500); - --color-tag-selectable-dark-disabled-background: var(--color-grey-700); - --color-tag-selectable-dark-selected-hover-background: var(--color-primary-01-300); - --color-tag-selectable-dark-selected-text: var(--color-grey-900); - --color-tag-selectable-dark-selected-border: var(--color-primary-01-400); - --color-tag-selectable-dark-selected-background: var(--color-primary-01-400); - --color-tag-selectable-dark-active-text: var(--color-grey-900); - --color-tag-selectable-dark-active-border: var(--color-primary-01-200); - --color-tag-selectable-dark-active-background: var(--color-primary-01-200); - --color-tag-selectable-dark-hover-background: var(--color-primary-01-700); - --color-tag-selectable-dark-text: var(--color-grey-000); - --color-tag-selectable-dark-border: var(--color-grey-000); - --color-tag-selectable-dark-background: var(--color-grey-900); - --color-tag-selectable-light-selected-hover-background: var(--color-primary-01-700); - --color-tag-selectable-light-selected-text: var(--color-grey-000); - --color-tag-selectable-light-selected-background: var(--color-primary-01-600); - --color-tag-selectable-light-disabled-text: var(--color-grey-500); - --color-tag-selectable-light-disabled-background: var(--color-grey-100); - --color-tag-selectable-light-active-text: var(--color-grey-000); - --color-tag-selectable-light-active-border: var(--color-primary-01-800); - --color-tag-selectable-light-active-background: var(--color-primary-01-800); - --color-tag-selectable-light-hover-background: var(--color-primary-01-300); - --color-tag-selectable-light-text: var(--color-grey-900); - --color-tag-selectable-light-border: var(--color-grey-500); - --color-tag-selectable-light-background: var(--color-grey-000); - --color-tag-link-dark-active-background: var(--color-grey-700); - --color-tag-link-dark-hover-background: var(--color-grey-800); - --color-tag-link-dark-text: var(--color-grey-000); - --color-tag-link-dark-border: var(--color-grey-000); - --color-tag-link-dark-background: var(--color-grey-900); - --color-tag-link-light-active-background: var(--color-grey-200); - --color-tag-link-light-hover-background: var(--color-grey-100); - --color-tag-link-light-text: var(--color-grey-900); - --color-tag-link-light-border: var(--color-grey-500); - --color-tag-link-light-background: var(--color-grey-000); - --color-tag-text-dark-text: var(--color-grey-000); - --color-tag-text-dark-border: var(--color-grey-000); - --color-tag-text-dark-background: var(--color-grey-900); - --color-tag-text-light-text: var(--color-grey-900); - --color-tag-text-light-border: var(--color-grey-500); - --color-tag-text-light-background: var(--color-grey-000); - --color-tabs-active-disabled: var(--color-primary-01-200); - --color-tabs-selected-text: var(--color-primary-01-600); - --color-tabs-selected-border: var(--color-primary-01-600); - --color-tabs-active-text: var(--color-primary-01-800); - --color-tabs-active-background: var(--color-secondary-sandgrey-200); - --color-tabs-disabled-background: var(--color-grey-200); - --color-tabs-hover: var(--color-primary-01-800); - --color-tabs-element-background: var(--color-secondary-sandgrey-100); - --color-tabs-shadow: var(--color-grey-999); - --color-tabs-background: var(--color-grey-000); - --color-stepper-title: var(--color-primary-01-500); - --color-stepper-icon: var(--color-primary-01-500); - --color-stepper-indicator-current-border: var(--color-primary-01-500); - --color-stepper-indicator-current-background: var(--color-primary-01-500); - --color-stepper-indicator-border: var(--color-grey-400); - --color-stepper-indicator-background: var(--color-grey-000); - --color-stepper-link-hover-text: var(--color-primary-01-500); - --color-stepper-item-current-background: var(--color-primary-01-500); - --color-stepper-item-background: var(--color-grey-400); - --color-star-hover: var(--color-secondary-orange-300); - --color-star-focus: var(--color-secondary-blue-500); - --color-star-empty: var(--color-grey-000); - --color-progress-branded-indicator: var(--color-primary-01-500); - --color-progress-percentage-half: var(--color-grey-000); - --color-progress-percentage-default: var(--color-grey-900); - --color-progress-indicator: var(--color-info-600); - --color-progress-background: var(--color-grey-200); - --color-phone-number-item-focus-background: var(--color-grey-100); - --color-phone-number-item-border: var(--color-grey-300); - --color-phone-number-list-background: var(--color-grey-000); - --color-phone-number-button-border: var(--color-grey-600); - --color-password-input-button-hover-background: var(--color-grey-100); - --color-overlay-loader-background: var(--color-secondary-blue-900); - --color-overlay-background: var(--color-grey-900); - --color-option-card-disabled-label: var(--color-grey-600); - --color-option-card-disabled-content: var(--color-grey-200); - --color-option-card-checked-label-shadow: var(--color-primary-01-100); - --color-option-card-checked-label-border: var(--color-primary-01-500); - --color-option-card-hover-label-shadow: var(--color-grey-800); - --color-option-card-label-shadow: var(--color-grey-300); - --color-option-button-disabled-label-background: var(--color-grey-200); - --color-option-button-checked-label-shadow: var(--color-primary-01-100); - --color-option-button-checked-label-border: var(--color-primary-01-500); - --color-option-button-hover-label-shadow: var(--color-grey-800); - --color-option-button-label-shadow: var(--color-grey-300); - --color-notification-danger-icon: var(--color-danger-600); - --color-notification-danger-border: var(--color-danger-500); - --color-notification-danger-background: var(--color-danger-100); - --color-notification-warning-icon: var(--color-warning-600); - --color-notification-warning-border: var(--color-warning-500); - --color-notification-warning-background: var(--color-warning-100); - --color-notification-success-icon: var(--color-success-600); - --color-notification-success-border: var(--color-success-500); - --color-notification-success-background: var(--color-success-100); - --color-notification-information-icon: var(--color-info-600); - --color-notification-information-border: var(--color-info-500); - --color-notification-information-background: var(--color-info-100); - --color-notification-font: var(--color-grey-999); - --color-listbox-disabled-background: var(--color-grey-200); - --color-listbox-tile-hover-background: var(--color-grey-100); - --color-listbox-tile-shadow: var(--color-grey-900); - --color-listbox-tile-border: var(--color-grey-300); - --color-listbox-border: var(--color-grey-600); - --color-listbox-background: var(--color-grey-000); - --color-link-danger-hover: var(--color-secondary-red-800); - --color-link-danger-disabled: var(--color-grey-100); - --color-link-danger-active: var(--color-secondary-red-700); - --color-link-danger-visited: var(--color-secondary-red-700); - --color-link-danger-base: var(--color-secondary-red-600); - --color-link-primary-02-hover: var(--color-primary-02-900); - --color-link-primary-02-disabled: var(--color-grey-100); - --color-link-primary-02-active: var(--color-primary-02-700); - --color-link-primary-02-visited: var(--color-primary-02-700); - --color-link-primary-02-base: var(--color-primary-02-600); - --color-link-primary-hover: var(--color-primary-01-800); - --color-link-primary-disabled: var(--color-grey-100); - --color-link-primary-active: var(--color-primary-01-700); - --color-link-primary-visited: var(--color-primary-01-700); - --color-link-primary-base: var(--color-primary-01-600); - --color-link-light-hover: var(--color-grey-400); - --color-link-light-disabled: var(--color-grey-100); - --color-link-light-active: var(--color-grey-200); - --color-link-light-visited: var(--color-grey-200); - --color-link-light-base: var(--color-grey-000); - --color-link-dark-hover: var(--color-grey-600); - --color-link-dark-disabled: var(--color-grey-100); - --color-link-dark-active: var(--color-grey-800); - --color-link-dark-visited: var(--color-grey-800); - --color-link-dark-base: var(--color-grey-999); - --color-input-checked-hover-border: var(--color-primary-01-800); - --color-input-checked-icon: var(--color-grey-000); - --color-input-checked-background: var(--color-primary-01-500); - --color-input-checked-border: var(--color-primary-01-500); - --color-input-invalid-hover-border: var(--color-danger-800); - --color-input-invalid-border: var(--color-danger-600); - --color-input-valid-hover-border: var(--color-success-800); - --color-input-valid-border: var(--color-success-500); - --color-input-focus-border: var(--color-secondary-blue-500); - --color-input-hover-border: var(--color-grey-900); - --color-input-disabled-label: var(--color-grey-500); - --color-input-disabled-icon: var(--color-grey-400); - --color-input-disabled-border: var(--color-grey-100); - --color-input-disabled-background: var(--color-grey-100); - --color-input-background: var(--color-grey-000); - --color-input-placeholder: var(--color-grey-600); - --color-input-border: var(--color-grey-600); - --color-input-text: var(--color-grey-900); - --color-hero-cover-background: var(--color-grey-900); - --color-heading-underline-lightest: var(--color-primary-01-200); - --color-heading-underline-default: var(--color-primary-01-500); - --color-font-danger: var(--color-danger-600); - --color-font-warning: var(--color-warning-600); - --color-font-success: var(--color-success-600); - --color-font-info: var(--color-info-600); - --color-font-lightest: var(--color-grey-000); - --color-font-light: var(--color-grey-600); - --color-font-dark: var(--color-grey-800); - --color-font-darker: var(--color-grey-900); - --color-font-darkest: var(--color-grey-999); - --color-font-primary-02: var(--color-primary-02-500); - --color-font-primary-01: var(--color-primary-01-600); - --color-focus-border: var(--color-secondary-blue-500); - --color-focus-gap: var(--color-grey-000); - --color-flag-bordered-danger-text: var(--color-secondary-red-600); - --color-flag-bordered-danger-border: var(--color-secondary-red-600); - --color-flag-bordered-danger-background: var(--color-grey-000); - --color-flag-bordered-light-text: var(--color-grey-000); - --color-flag-bordered-light-border: var(--color-grey-000); - --color-flag-bordered-light-background: var(--color-grey-999); - --color-flag-bordered-dark-text: var(--color-grey-999); - --color-flag-bordered-dark-border: var(--color-grey-999); - --color-flag-bordered-dark-background: var(--color-grey-000); - --color-flag-bordered-primary-02-text: var(--color-secondary-purple-600); - --color-flag-bordered-primary-02-border: var(--color-secondary-purple-600); - --color-flag-bordered-primary-02-background: var(--color-grey-000); - --color-flag-bordered-text: var(--color-primary-01-600); - --color-flag-bordered-border: var(--color-primary-01-600); - --color-flag-bordered-background: var(--color-grey-000); - --color-flag-solid-danger-text: var(--color-grey-000); - --color-flag-solid-danger-border: var(--color-secondary-red-600); - --color-flag-solid-danger-background: var(--color-secondary-red-600); - --color-flag-solid-light-text: var(--color-grey-999); - --color-flag-solid-light-border: var(--color-grey-000); - --color-flag-solid-light-background: var(--color-grey-000); - --color-flag-solid-dark-text: var(--color-grey-000); - --color-flag-solid-dark-border: var(--color-grey-999); - --color-flag-solid-dark-background: var(--color-grey-999); - --color-flag-solid-primary-02-text: var(--color-grey-000); - --color-flag-solid-primary-02-border: var(--color-secondary-purple-600); - --color-flag-solid-primary-02-background: var(--color-secondary-purple-600); - --color-flag-solid-text: var(--color-grey-000); - --color-flag-solid-border: var(--color-primary-01-600); - --color-flag-solid-background: var(--color-primary-01-600); - --color-fileuploader-alert: var(--color-danger-600); - --color-fileuploader-valid: var(--color-primary-01-500); - --color-fileuploader-files-delete: var(--color-grey-200); - --color-fileuploader-files-list: var(--color-grey-100); - --color-fileuploader-font: var(--color-grey-999); - --color-divider-dark: var(--color-grey-999); - --color-divider-default: var(--color-grey-600); - --color-divider-light: var(--color-grey-300); - --color-divider-lightest: var(--color-grey-000); - --color-dialog-footer-shadow: var(--color-grey-900); - --color-dialog-close: var(--color-grey-500); - --color-dialog-icon: var(--color-grey-600); - --color-dialog-background: var(--color-grey-000); - --color-datatable-icon: var(--color-primary-01-600); - --color-datatable-subtable-font: var(--color-secondary-purple-900); - --color-datatable-subtable-border: var(--color-secondary-purple-300); - --color-datatable-subtable-background: var(--color-secondary-purple-100); - --color-datatable-cell-background-selected: var(--color-primary-01-100); - --color-datatable-cell-background-hover: var(--color-secondary-blue-100); - --color-datatable-cell-font: var(--color-grey-900); - --color-datatable-sort-arrow-active: var(--color-secondary-purple-500); - --color-datatable-sort-arrow-default: var(--color-secondary-blue-200); - --color-datatable-thead-font: var(--color-secondary-purple-700); - --color-datatable-container-background: var(--color-secondary-purple-100); - --color-datatable-filters-border: var(--color-secondary-blue-300); - --color-card-bordered-border: var(--color-grey-500); - --color-card-bordered-background: var(--color-grey-000); - --color-button-bordered-danger-hover-font: var(--color-danger-700); - --color-button-bordered-danger-hover-background: var(--color-secondary-red-100); - --color-button-bordered-danger-active-font: var(--color-danger-800); - --color-button-bordered-danger-active-background: var(--color-secondary-red-200); - --color-button-bordered-danger-disabled-font: var(--color-grey-600); - --color-button-bordered-danger-disabled-background: var(--color-grey-200); - --color-button-bordered-danger-focus-border: var(--color-secondary-red-700); - --color-button-bordered-danger-font: var(--color-secondary-red-600); - --color-button-bordered-danger-border: var(--color-secondary-red-600); - --color-button-bordered-danger-background: var(--color-grey-000); - --color-button-bordered-neutral-hover-background: var(--color-grey-100); - --color-button-bordered-neutral-active-background: var(--color-grey-200); - --color-button-bordered-neutral-disabled-font: var(--color-grey-600); - --color-button-bordered-neutral-disabled-background: var(--color-grey-200); - --color-button-bordered-neutral-focus-border: var(--color-grey-900); - --color-button-bordered-neutral-font: var(--color-grey-800); - --color-button-bordered-neutral-border: var(--color-grey-800); - --color-button-bordered-neutral-background: var(--color-grey-000); - --color-button-bordered-primary-02-hover-background: var(--color-primary-02-100); - --color-button-bordered-primary-02-active-background: var(--color-primary-02-200); - --color-button-bordered-primary-02-disabled-font: var(--color-grey-600); - --color-button-bordered-primary-02-disabled-background: var(--color-grey-200); - --color-button-bordered-primary-02-focus-border: var(--color-primary-02-900); - --color-button-bordered-primary-02-font: var(--color-primary-02-500); - --color-button-bordered-primary-02-border: var(--color-primary-02-500); - --color-button-bordered-primary-02-background: var(--color-grey-000); - --color-button-bordered-hover-font: var(--color-primary-01-700); - --color-button-bordered-hover-background: var(--color-primary-01-100); - --color-button-bordered-active-font: var(--color-primary-01-800); - --color-button-bordered-active-background: var(--color-primary-01-200); - --color-button-bordered-disabled-font: var(--color-grey-600); - --color-button-bordered-disabled-background: var(--color-grey-200); - --color-button-bordered-focus-border: var(--color-primary-01-700); - --color-button-bordered-font: var(--color-primary-01-600); - --color-button-bordered-border: var(--color-primary-01-600); - --color-button-bordered-background: var(--color-grey-000); - --color-button-solid-danger-hover-font: var(--color-grey-000); - --color-button-solid-danger-hover-background: var(--color-danger-700); - --color-button-solid-danger-active-background: var(--color-danger-700); - --color-button-solid-danger-disabled-font: var(--color-grey-600); - --color-button-solid-danger-disabled-background: var(--color-grey-200); - --color-button-solid-danger-focus-border: var(--color-danger-700); - --color-button-solid-danger-font: var(--color-grey-000); - --color-button-solid-danger-background: var(--color-secondary-red-600); - --color-button-solid-neutral-hover-font: var(--color-grey-000); - --color-button-solid-neutral-hover-background: var(--color-grey-900); - --color-button-solid-neutral-active-background: var(--color-grey-800); - --color-button-solid-neutral-disabled-font: var(--color-grey-600); - --color-button-solid-neutral-disabled-background: var(--color-grey-200); - --color-button-solid-neutral-focus-border: var(--color-grey-900); - --color-button-solid-neutral-font: var(--color-grey-000); - --color-button-solid-neutral-background: var(--color-grey-800); - --color-button-solid-primary-02-hover-font: var(--color-grey-000); - --color-button-solid-primary-02-hover-background: var(--color-primary-02-800); - --color-button-solid-primary-02-active-background: var(--color-primary-02-900); - --color-button-solid-primary-02-disabled-font: var(--color-grey-600); - --color-button-solid-primary-02-disabled-background: var(--color-grey-200); - --color-button-solid-primary-02-focus-border: var(--color-primary-02-900); - --color-button-solid-primary-02-font: var(--color-grey-000); - --color-button-solid-primary-02-background: var(--color-primary-02-500); - --color-button-solid-hover-font: var(--color-grey-000); - --color-button-solid-hover-background: var(--color-primary-01-700); - --color-button-solid-active-background: var(--color-primary-01-700); - --color-button-solid-disabled-font: var(--color-grey-600); - --color-button-solid-disabled-background: var(--color-grey-200); - --color-button-solid-focus-border: var(--color-primary-01-700); - --color-button-solid-font: var(--color-grey-000); - --color-button-solid-background: var(--color-primary-01-600); - --color-breadcrumb-arrow-invert: var(--color-grey-000); - --color-breadcrumb-arrow: var(--color-grey-800); - --color-secondary-green-900: var(--color-primary-01-900); - --color-secondary-green-800: var(--color-primary-01-800); - --color-secondary-green-700: var(--color-primary-01-700); - --color-secondary-green-600: var(--color-primary-01-600); - --color-secondary-green-500: var(--color-primary-01-500); - --color-secondary-green-400: var(--color-primary-01-400); - --color-secondary-green-300: var(--color-primary-01-300); - --color-secondary-green-200: var(--color-primary-01-200); - --color-secondary-green-100: var(--color-primary-01-100); - --color-badge-neutral-text: var(--color-grey-700); - --color-badge-neutral-border: var(--color-grey-500); - --color-badge-neutral-background: var(--color-grey-100); - --color-badge-danger-text: var(--color-danger-700); - --color-badge-danger-border: var(--color-danger-500); - --color-badge-danger-background: var(--color-danger-100); - --color-badge-warning-text: var(--color-warning-700); - --color-badge-warning-border: var(--color-warning-500); - --color-badge-warning-background: var(--color-warning-100); - --color-badge-success-text: var(--color-success-700); - --color-badge-success-border: var(--color-success-500); - --color-badge-success-background: var(--color-success-100); - --color-badge-info-text: var(--color-info-700); - --color-badge-info-border: var(--color-info-500); - --color-badge-info-background: var(--color-info-100); - --color-tabs-default: var(--color-font-light); - --color-fields-help: var(--color-font-light); - --color-fields-requirement: var(--color-font-light); - --color-fields-label: var(--color-font-dark); - --color-fields-error: var(--color-font-danger); -} diff --git a/packages/tokens/build/adeo/js/tokens.js b/packages/tokens/build/adeo/js/tokens.js deleted file mode 100644 index 52730c485..000000000 --- a/packages/tokens/build/adeo/js/tokens.js +++ /dev/null @@ -1,565 +0,0 @@ -export const BorderS = 1; -export const BorderM = 2; -export const BorderL = 3; -export const ColorBadgeInfoBackground = "#daeff7"; -export const ColorBadgeInfoBorder = "#0b96cc"; -export const ColorBadgeInfoText = "#005c91"; -export const ColorBadgeSuccessBackground = "#ebf5de"; -export const ColorBadgeSuccessBorder = "#46a610"; -export const ColorBadgeSuccessText = "#006902"; -export const ColorBadgeWarningBackground = "#fdf1e8"; -export const ColorBadgeWarningBorder = "#ea7315"; -export const ColorBadgeWarningText = "#8c3500"; -export const ColorBadgeDangerBackground = "#fdeaea"; -export const ColorBadgeDangerBorder = "#ea302d"; -export const ColorBadgeDangerText = "#8c0003"; -export const ColorBadgeNeutralBackground = "#e6e6e6"; -export const ColorBadgeNeutralBorder = "#808080"; -export const ColorBadgeNeutralText = "#4d4d4d"; -export const ColorPrimary01100 = "#d9f0f3"; -export const ColorPrimary01200 = "#91d5db"; -export const ColorPrimary01300 = "#48bac4"; -export const ColorPrimary01400 = "#009eac"; -export const ColorPrimary01500 = "#00919f"; -export const ColorPrimary01600 = "#007f8c"; -export const ColorPrimary01700 = "#006974"; -export const ColorPrimary01800 = "#004e57"; -export const ColorPrimary01900 = "#002e33"; -export const ColorPrimary02100 = "#eeeff1"; -export const ColorPrimary02200 = "#cfd2d8"; -export const ColorPrimary02300 = "#b3b7c1"; -export const ColorPrimary02400 = "#8f94a3"; -export const ColorPrimary02500 = "#6a7081"; -export const ColorPrimary02600 = "#494f60"; -export const ColorPrimary02700 = "#343b4c"; -export const ColorPrimary02800 = "#242938"; -export const ColorPrimary02900 = "#171b26"; -export const ColorGrey100 = "#e6e6e6"; -export const ColorGrey200 = "#cccccc"; -export const ColorGrey300 = "#b3b3b3"; -export const ColorGrey400 = "#999999"; -export const ColorGrey500 = "#808080"; -export const ColorGrey600 = "#666666"; -export const ColorGrey700 = "#4d4d4d"; -export const ColorGrey800 = "#333333"; -export const ColorGrey900 = "#191919"; -export const ColorGrey999 = "#000000"; -export const ColorGrey000 = "#ffffff"; -export const ColorSecondaryBlue100 = "#eaedef"; -export const ColorSecondaryBlue200 = "#cdd4d8"; -export const ColorSecondaryBlue300 = "#b0bbc0"; -export const ColorSecondaryBlue400 = "#92a2a9"; -export const ColorSecondaryBlue500 = "#758992"; -export const ColorSecondaryBlue600 = "#5b737d"; -export const ColorSecondaryBlue700 = "#405d68"; -export const ColorSecondaryBlue800 = "#264653"; -export const ColorSecondaryBlue900 = "#082435"; -export const ColorSecondaryGreen100 = "#d9f0f3"; -export const ColorSecondaryGreen200 = "#91d5db"; -export const ColorSecondaryGreen300 = "#48bac4"; -export const ColorSecondaryGreen400 = "#009eac"; -export const ColorSecondaryGreen500 = "#00919f"; -export const ColorSecondaryGreen600 = "#007f8c"; -export const ColorSecondaryGreen700 = "#006974"; -export const ColorSecondaryGreen800 = "#004e57"; -export const ColorSecondaryGreen900 = "#002e33"; -export const ColorSecondaryPurple100 = "#e7e7f0"; -export const ColorSecondaryPurple200 = "#c5c5dc"; -export const ColorSecondaryPurple300 = "#a4a3c7"; -export const ColorSecondaryPurple400 = "#8281b2"; -export const ColorSecondaryPurple500 = "#605f9d"; -export const ColorSecondaryPurple600 = "#4b4a8c"; -export const ColorSecondaryPurple700 = "#393879"; -export const ColorSecondaryPurple800 = "#282863"; -export const ColorSecondaryPurple900 = "#1a1a4b"; -export const ColorSecondaryRed100 = "#fdeaea"; -export const ColorSecondaryRed200 = "#f8bcbb"; -export const ColorSecondaryRed300 = "#f38d8c"; -export const ColorSecondaryRed400 = "#ef5f5c"; -export const ColorSecondaryRed500 = "#ea302d"; -export const ColorSecondaryRed600 = "#c61112"; -export const ColorSecondaryRed700 = "#8c0003"; -export const ColorSecondaryRed800 = "#530000"; -export const ColorSecondaryRed900 = "#2d0000"; -export const ColorSecondaryOrange100 = "#fdf1e8"; -export const ColorSecondaryOrange200 = "#f8d2b3"; -export const ColorSecondaryOrange300 = "#f4b27e"; -export const ColorSecondaryOrange400 = "#ef934a"; -export const ColorSecondaryOrange500 = "#ea7315"; -export const ColorSecondaryOrange600 = "#c65200"; -export const ColorSecondaryOrange700 = "#8c3500"; -export const ColorSecondaryOrange800 = "#531b00"; -export const ColorSecondaryOrange900 = "#360e00"; -export const ColorSecondaryYellow100 = "#fff8e2"; -export const ColorSecondaryYellow200 = "#ffebaf"; -export const ColorSecondaryYellow300 = "#fee07d"; -export const ColorSecondaryYellow400 = "#fcd64c"; -export const ColorSecondaryYellow500 = "#f8cc1c"; -export const ColorSecondaryYellow600 = "#c9a21b"; -export const ColorSecondaryYellow700 = "#9c7b18"; -export const ColorSecondaryYellow800 = "#705613"; -export const ColorSecondaryYellow900 = "#46350d"; -export const ColorDanger100 = "#fdeaea"; -export const ColorDanger200 = "#f8bcbb"; -export const ColorDanger300 = "#f38d8c"; -export const ColorDanger400 = "#ef5f5c"; -export const ColorDanger500 = "#ea302d"; -export const ColorDanger600 = "#c61112"; -export const ColorDanger700 = "#8c0003"; -export const ColorDanger800 = "#530000"; -export const ColorDanger900 = "#2d0000"; -export const ColorInfo100 = "#daeff7"; -export const ColorInfo200 = "#a7d9ed"; -export const ColorInfo300 = "#73c3e2"; -export const ColorInfo400 = "#3facd7"; -export const ColorInfo500 = "#0b96cc"; -export const ColorInfo600 = "#007bb4"; -export const ColorInfo700 = "#005c91"; -export const ColorInfo800 = "#003a5c"; -export const ColorInfo900 = "#002a41"; -export const ColorWarning100 = "#fdf1e8"; -export const ColorWarning200 = "#f8d2b3"; -export const ColorWarning300 = "#f4b27e"; -export const ColorWarning400 = "#ef934a"; -export const ColorWarning500 = "#ea7315"; -export const ColorWarning600 = "#c65200"; -export const ColorWarning700 = "#8c3500"; -export const ColorWarning800 = "#531b00"; -export const ColorWarning900 = "#360e00"; -export const ColorSuccess100 = "#ebf5de"; -export const ColorSuccess200 = "#c5e39e"; -export const ColorSuccess300 = "#9ed05f"; -export const ColorSuccess400 = "#78be20"; -export const ColorSuccess500 = "#46a610"; -export const ColorSuccess600 = "#188803"; -export const ColorSuccess700 = "#006902"; -export const ColorSuccess800 = "#035010"; -export const ColorSuccess900 = "#023618"; -export const ColorBreadcrumbArrow = "#333333"; -export const ColorBreadcrumbArrowInvert = "#ffffff"; -export const ColorButtonSolidBackground = "#007f8c"; -export const ColorButtonSolidFont = "#ffffff"; -export const ColorButtonSolidFocusBorder = "#006974"; -export const ColorButtonSolidDisabledBackground = "#cccccc"; -export const ColorButtonSolidDisabledFont = "#666666"; -export const ColorButtonSolidActiveBackground = "#006974"; -export const ColorButtonSolidHoverBackground = "#006974"; -export const ColorButtonSolidHoverFont = "#ffffff"; -export const ColorButtonSolidPrimary02Background = "#6a7081"; -export const ColorButtonSolidPrimary02Font = "#ffffff"; -export const ColorButtonSolidPrimary02FocusBorder = "#171b26"; -export const ColorButtonSolidPrimary02DisabledBackground = "#cccccc"; -export const ColorButtonSolidPrimary02DisabledFont = "#666666"; -export const ColorButtonSolidPrimary02ActiveBackground = "#171b26"; -export const ColorButtonSolidPrimary02HoverBackground = "#242938"; -export const ColorButtonSolidPrimary02HoverFont = "#ffffff"; -export const ColorButtonSolidNeutralBackground = "#333333"; -export const ColorButtonSolidNeutralFont = "#ffffff"; -export const ColorButtonSolidNeutralFocusBorder = "#191919"; -export const ColorButtonSolidNeutralDisabledBackground = "#cccccc"; -export const ColorButtonSolidNeutralDisabledFont = "#666666"; -export const ColorButtonSolidNeutralActiveBackground = "#333333"; -export const ColorButtonSolidNeutralHoverBackground = "#191919"; -export const ColorButtonSolidNeutralHoverFont = "#ffffff"; -export const ColorButtonSolidDangerBackground = "#c61112"; -export const ColorButtonSolidDangerFont = "#ffffff"; -export const ColorButtonSolidDangerFocusBorder = "#8c0003"; -export const ColorButtonSolidDangerDisabledBackground = "#cccccc"; -export const ColorButtonSolidDangerDisabledFont = "#666666"; -export const ColorButtonSolidDangerActiveBackground = "#8c0003"; -export const ColorButtonSolidDangerHoverBackground = "#8c0003"; -export const ColorButtonSolidDangerHoverFont = "#ffffff"; -export const ColorButtonBorderedBackground = "#ffffff"; -export const ColorButtonBorderedBorder = "#007f8c"; -export const ColorButtonBorderedFont = "#007f8c"; -export const ColorButtonBorderedFocusBorder = "#006974"; -export const ColorButtonBorderedDisabledBackground = "#cccccc"; -export const ColorButtonBorderedDisabledFont = "#666666"; -export const ColorButtonBorderedActiveBackground = "#91d5db"; -export const ColorButtonBorderedActiveFont = "#004e57"; -export const ColorButtonBorderedHoverBackground = "#d9f0f3"; -export const ColorButtonBorderedHoverFont = "#006974"; -export const ColorButtonBorderedPrimary02Background = "#ffffff"; -export const ColorButtonBorderedPrimary02Border = "#6a7081"; -export const ColorButtonBorderedPrimary02Font = "#6a7081"; -export const ColorButtonBorderedPrimary02FocusBorder = "#171b26"; -export const ColorButtonBorderedPrimary02DisabledBackground = "#cccccc"; -export const ColorButtonBorderedPrimary02DisabledFont = "#666666"; -export const ColorButtonBorderedPrimary02ActiveBackground = "#cfd2d8"; -export const ColorButtonBorderedPrimary02HoverBackground = "#eeeff1"; -export const ColorButtonBorderedNeutralBackground = "#ffffff"; -export const ColorButtonBorderedNeutralBorder = "#333333"; -export const ColorButtonBorderedNeutralFont = "#333333"; -export const ColorButtonBorderedNeutralFocusBorder = "#191919"; -export const ColorButtonBorderedNeutralDisabledBackground = "#cccccc"; -export const ColorButtonBorderedNeutralDisabledFont = "#666666"; -export const ColorButtonBorderedNeutralActiveBackground = "#cccccc"; -export const ColorButtonBorderedNeutralHoverBackground = "#e6e6e6"; -export const ColorButtonBorderedDangerBackground = "#ffffff"; -export const ColorButtonBorderedDangerBorder = "#c61112"; -export const ColorButtonBorderedDangerFont = "#c61112"; -export const ColorButtonBorderedDangerFocusBorder = "#8c0003"; -export const ColorButtonBorderedDangerDisabledBackground = "#cccccc"; -export const ColorButtonBorderedDangerDisabledFont = "#666666"; -export const ColorButtonBorderedDangerActiveBackground = "#f8bcbb"; -export const ColorButtonBorderedDangerActiveFont = "#530000"; -export const ColorButtonBorderedDangerHoverBackground = "#fdeaea"; -export const ColorButtonBorderedDangerHoverFont = "#8c0003"; -export const ColorCardBorderedBackground = "#ffffff"; -export const ColorCardBorderedBorder = "#808080"; -export const ColorDatatableFiltersBorder = "#b0bbc0"; -export const ColorDatatableContainerBackground = "#e7e7f0"; -export const ColorDatatableTheadFont = "#393879"; -export const ColorDatatableSortArrowDefault = "#cdd4d8"; -export const ColorDatatableSortArrowActive = "#605f9d"; -export const ColorDatatableCellFont = "#191919"; -export const ColorDatatableCellBackgroundHover = "#eaedef"; -export const ColorDatatableCellBackgroundSelected = "#d9f0f3"; -export const ColorDatatableSubtableBackground = "#e7e7f0"; -export const ColorDatatableSubtableBorder = "#a4a3c7"; -export const ColorDatatableSubtableFont = "#1a1a4b"; -export const ColorDatatableIcon = "#007f8c"; -export const ColorDialogBackground = "#ffffff"; -export const ColorDialogIcon = "#666666"; -export const ColorDialogClose = "#808080"; -export const ColorDialogFooterShadow = "#191919"; -export const ColorDividerLightest = "#ffffff"; -export const ColorDividerLight = "#b3b3b3"; -export const ColorDividerDefault = "#666666"; -export const ColorDividerDark = "#000000"; -export const ColorFieldsError = "#c61112"; -export const ColorFieldsLabel = "#333333"; -export const ColorFieldsRequirement = "#666666"; -export const ColorFieldsHelp = "#666666"; -export const ColorFileuploaderFont = "#000000"; -export const ColorFileuploaderFilesList = "#e6e6e6"; -export const ColorFileuploaderFilesDelete = "#cccccc"; -export const ColorFileuploaderValid = "#00919f"; -export const ColorFileuploaderAlert = "#c61112"; -export const ColorFlagSolidBackground = "#007f8c"; -export const ColorFlagSolidBorder = "#007f8c"; -export const ColorFlagSolidText = "#ffffff"; -export const ColorFlagSolidPrimary02Background = "#4b4a8c"; -export const ColorFlagSolidPrimary02Border = "#4b4a8c"; -export const ColorFlagSolidPrimary02Text = "#ffffff"; -export const ColorFlagSolidDarkBackground = "#000000"; -export const ColorFlagSolidDarkBorder = "#000000"; -export const ColorFlagSolidDarkText = "#ffffff"; -export const ColorFlagSolidLightBackground = "#ffffff"; -export const ColorFlagSolidLightBorder = "#ffffff"; -export const ColorFlagSolidLightText = "#000000"; -export const ColorFlagSolidDangerBackground = "#c61112"; -export const ColorFlagSolidDangerBorder = "#c61112"; -export const ColorFlagSolidDangerText = "#ffffff"; -export const ColorFlagBorderedBackground = "#ffffff"; -export const ColorFlagBorderedBorder = "#007f8c"; -export const ColorFlagBorderedText = "#007f8c"; -export const ColorFlagBorderedPrimary02Background = "#ffffff"; -export const ColorFlagBorderedPrimary02Border = "#4b4a8c"; -export const ColorFlagBorderedPrimary02Text = "#4b4a8c"; -export const ColorFlagBorderedDarkBackground = "#ffffff"; -export const ColorFlagBorderedDarkBorder = "#000000"; -export const ColorFlagBorderedDarkText = "#000000"; -export const ColorFlagBorderedLightBackground = "#000000"; -export const ColorFlagBorderedLightBorder = "#ffffff"; -export const ColorFlagBorderedLightText = "#ffffff"; -export const ColorFlagBorderedDangerBackground = "#ffffff"; -export const ColorFlagBorderedDangerBorder = "#c61112"; -export const ColorFlagBorderedDangerText = "#c61112"; -export const ColorFocusGap = "#ffffff"; -export const ColorFocusBorder = "#758992"; -export const ColorFontPrimary01 = "#007f8c"; -export const ColorFontPrimary02 = "#6a7081"; -export const ColorFontDarkest = "#000000"; -export const ColorFontDarker = "#191919"; -export const ColorFontDark = "#333333"; -export const ColorFontLight = "#666666"; -export const ColorFontLightest = "#ffffff"; -export const ColorFontInfo = "#007bb4"; -export const ColorFontSuccess = "#188803"; -export const ColorFontWarning = "#c65200"; -export const ColorFontDanger = "#c61112"; -export const ColorHeadingUnderlineDefault = "#00919f"; -export const ColorHeadingUnderlineLightest = "#91d5db"; -export const ColorHeroCoverBackground = "#191919"; -export const ColorInputText = "#191919"; -export const ColorInputBorder = "#666666"; -export const ColorInputPlaceholder = "#666666"; -export const ColorInputBackground = "#ffffff"; -export const ColorInputDisabledBackground = "#e6e6e6"; -export const ColorInputDisabledBorder = "#e6e6e6"; -export const ColorInputDisabledIcon = "#999999"; -export const ColorInputDisabledLabel = "#808080"; -export const ColorInputHoverBorder = "#191919"; -export const ColorInputFocusBorder = "#758992"; -export const ColorInputValidBorder = "#46a610"; -export const ColorInputValidHoverBorder = "#035010"; -export const ColorInputInvalidBorder = "#c61112"; -export const ColorInputInvalidHoverBorder = "#530000"; -export const ColorInputCheckedBorder = "#00919f"; -export const ColorInputCheckedBackground = "#00919f"; -export const ColorInputCheckedIcon = "#ffffff"; -export const ColorInputCheckedHoverBorder = "#004e57"; -export const ColorLinkDarkBase = "#000000"; -export const ColorLinkDarkVisited = "#333333"; -export const ColorLinkDarkActive = "#333333"; -export const ColorLinkDarkDisabled = "#e6e6e6"; -export const ColorLinkDarkHover = "#666666"; -export const ColorLinkLightBase = "#ffffff"; -export const ColorLinkLightVisited = "#cccccc"; -export const ColorLinkLightActive = "#cccccc"; -export const ColorLinkLightDisabled = "#e6e6e6"; -export const ColorLinkLightHover = "#999999"; -export const ColorLinkPrimaryBase = "#007f8c"; -export const ColorLinkPrimaryVisited = "#006974"; -export const ColorLinkPrimaryActive = "#006974"; -export const ColorLinkPrimaryDisabled = "#e6e6e6"; -export const ColorLinkPrimaryHover = "#004e57"; -export const ColorLinkPrimary02Base = "#494f60"; -export const ColorLinkPrimary02Visited = "#343b4c"; -export const ColorLinkPrimary02Active = "#343b4c"; -export const ColorLinkPrimary02Disabled = "#e6e6e6"; -export const ColorLinkPrimary02Hover = "#171b26"; -export const ColorLinkDangerBase = "#c61112"; -export const ColorLinkDangerVisited = "#8c0003"; -export const ColorLinkDangerActive = "#8c0003"; -export const ColorLinkDangerDisabled = "#e6e6e6"; -export const ColorLinkDangerHover = "#530000"; -export const ColorListboxBackground = "#ffffff"; -export const ColorListboxBorder = "#666666"; -export const ColorListboxTileBorder = "#b3b3b3"; -export const ColorListboxTileShadow = "#191919"; -export const ColorListboxTileHoverBackground = "#e6e6e6"; -export const ColorListboxDisabledBackground = "#cccccc"; -export const ColorNotificationFont = "#000000"; -export const ColorNotificationInformationBackground = "#daeff7"; -export const ColorNotificationInformationBorder = "#0b96cc"; -export const ColorNotificationInformationIcon = "#007bb4"; -export const ColorNotificationSuccessBackground = "#ebf5de"; -export const ColorNotificationSuccessBorder = "#46a610"; -export const ColorNotificationSuccessIcon = "#188803"; -export const ColorNotificationWarningBackground = "#fdf1e8"; -export const ColorNotificationWarningBorder = "#ea7315"; -export const ColorNotificationWarningIcon = "#c65200"; -export const ColorNotificationDangerBackground = "#fdeaea"; -export const ColorNotificationDangerBorder = "#ea302d"; -export const ColorNotificationDangerIcon = "#c61112"; -export const ColorOptionButtonLabelShadow = "#b3b3b3"; -export const ColorOptionButtonHoverLabelShadow = "#333333"; -export const ColorOptionButtonCheckedLabelBorder = "#00919f"; -export const ColorOptionButtonCheckedLabelShadow = "#d9f0f3"; -export const ColorOptionButtonDisabledLabelBackground = "#cccccc"; -export const ColorOptionCardLabelShadow = "#b3b3b3"; -export const ColorOptionCardHoverLabelShadow = "#333333"; -export const ColorOptionCardCheckedLabelBorder = "#00919f"; -export const ColorOptionCardCheckedLabelShadow = "#d9f0f3"; -export const ColorOptionCardDisabledContent = "#cccccc"; -export const ColorOptionCardDisabledLabel = "#666666"; -export const ColorOverlayBackground = "#191919"; -export const ColorOverlayLoaderBackground = "#082435"; -export const ColorPasswordInputButtonHoverBackground = "#e6e6e6"; -export const ColorPhoneNumberButtonBorder = "#666666"; -export const ColorPhoneNumberListBackground = "#ffffff"; -export const ColorPhoneNumberItemBorder = "#b3b3b3"; -export const ColorPhoneNumberItemFocusBackground = "#e6e6e6"; -export const ColorProgressBackground = "#cccccc"; -export const ColorProgressIndicator = "#007bb4"; -export const ColorProgressPercentageDefault = "#191919"; -export const ColorProgressPercentageHalf = "#ffffff"; -export const ColorProgressBrandedIndicator = "#00919f"; -export const ColorStarEmpty = "#ffffff"; -export const ColorStarFocus = "#758992"; -export const ColorStarFull = "#ea7315"; -export const ColorStarHover = "#f4b27e"; -export const ColorStepperItemBackground = "#999999"; -export const ColorStepperItemCurrentBackground = "#00919f"; -export const ColorStepperLinkHoverText = "#00919f"; -export const ColorStepperIndicatorBackground = "#ffffff"; -export const ColorStepperIndicatorBorder = "#999999"; -export const ColorStepperIndicatorCurrentBackground = "#00919f"; -export const ColorStepperIndicatorCurrentBorder = "#00919f"; -export const ColorStepperIcon = "#00919f"; -export const ColorStepperTitle = "#00919f"; -export const ColorTabsBackground = "#ffffff"; -export const ColorTabsShadow = "#000000"; -export const ColorTabsDefault = "#666666"; -export const ColorTabsElementBackground = "#eeedea"; -export const ColorTabsHover = "#004e57"; -export const ColorTabsDisabledBackground = "#cccccc"; -export const ColorTabsActiveBackground = "#dddcd5"; -export const ColorTabsActiveText = "#004e57"; -export const ColorTabsSelectedBorder = "#007f8c"; -export const ColorTabsSelectedText = "#007f8c"; -export const ColorTabsActiveDisabled = "#91d5db"; -export const ColorTagTextLightBackground = "#ffffff"; -export const ColorTagTextLightBorder = "#808080"; -export const ColorTagTextLightText = "#191919"; -export const ColorTagTextDarkBackground = "#191919"; -export const ColorTagTextDarkBorder = "#ffffff"; -export const ColorTagTextDarkText = "#ffffff"; -export const ColorTagLinkLightBackground = "#ffffff"; -export const ColorTagLinkLightBorder = "#808080"; -export const ColorTagLinkLightText = "#191919"; -export const ColorTagLinkLightHoverBackground = "#e6e6e6"; -export const ColorTagLinkLightActiveBackground = "#cccccc"; -export const ColorTagLinkDarkBackground = "#191919"; -export const ColorTagLinkDarkBorder = "#ffffff"; -export const ColorTagLinkDarkText = "#ffffff"; -export const ColorTagLinkDarkHoverBackground = "#333333"; -export const ColorTagLinkDarkActiveBackground = "#4d4d4d"; -export const ColorTagSelectableLightBackground = "#ffffff"; -export const ColorTagSelectableLightBorder = "#808080"; -export const ColorTagSelectableLightText = "#191919"; -export const ColorTagSelectableLightHoverBackground = "#48bac4"; -export const ColorTagSelectableLightActiveBackground = "#004e57"; -export const ColorTagSelectableLightActiveBorder = "#004e57"; -export const ColorTagSelectableLightActiveText = "#ffffff"; -export const ColorTagSelectableLightDisabledBackground = "#e6e6e6"; -export const ColorTagSelectableLightDisabledText = "#808080"; -export const ColorTagSelectableLightSelectedBackground = "#007f8c"; -export const ColorTagSelectableLightSelectedText = "#ffffff"; -export const ColorTagSelectableLightSelectedHoverBackground = "#006974"; -export const ColorTagSelectableDarkBackground = "#191919"; -export const ColorTagSelectableDarkBorder = "#ffffff"; -export const ColorTagSelectableDarkText = "#ffffff"; -export const ColorTagSelectableDarkHoverBackground = "#006974"; -export const ColorTagSelectableDarkActiveBackground = "#91d5db"; -export const ColorTagSelectableDarkActiveBorder = "#91d5db"; -export const ColorTagSelectableDarkActiveText = "#191919"; -export const ColorTagSelectableDarkSelectedBackground = "#009eac"; -export const ColorTagSelectableDarkSelectedBorder = "#009eac"; -export const ColorTagSelectableDarkSelectedText = "#191919"; -export const ColorTagSelectableDarkSelectedHoverBackground = "#48bac4"; -export const ColorTagSelectableDarkDisabledBackground = "#4d4d4d"; -export const ColorTagSelectableDarkDisabledText = "#808080"; -export const ColorTagRemovableLightBackground = "#333333"; -export const ColorTagRemovableLightText = "#ffffff"; -export const ColorTagRemovableLightIcon = "#cccccc"; -export const ColorTagRemovableLightHoverBackground = "#4d4d4d"; -export const ColorTagRemovableLightActiveBackground = "#666666"; -export const ColorTagRemovableDarkBackground = "#cccccc"; -export const ColorTagRemovableDarkText = "#191919"; -export const ColorTagRemovableDarkIcon = "#191919"; -export const ColorTagRemovableDarkHoverBackground = "#b3b3b3"; -export const ColorTagRemovableDarkActiveBackground = "#999999"; -export const ColorToggleLabel = "#000000"; -export const ColorToggleOffBackground = "#666666"; -export const ColorToggleOffCircle = "#ffffff"; -export const ColorToggleOnBackground = "#00919f"; -export const ColorToggleOnCircle = "#ffffff"; -export const ColorToggleHoverCircle = "#e6e6e6"; -export const ColorToggleDisabledBackground = "#e6e6e6"; -export const ColorToggleDisabledCircle = "#b3b3b3"; -export const ColorToggleDisabledLabel = "#808080"; -export const ColorToggleDisabledCheckedBackground = "#91d5db"; -export const ColorToggleDisabledCheckedCircle = "#ffffff"; -export const ColorTooltipBackground = "#5b737d"; -export const ColorTooltipBorder = "#ffffff"; -export const ColorSecondarySandgrey100 = "#eeedea"; -export const ColorSecondarySandgrey200 = "#dddcd5"; -export const ColorSecondarySandgrey300 = "#c2c1ba"; -export const ColorSecondarySandgrey400 = "#a7a6a0"; -export const ColorSecondarySandgrey500 = "#8c8b85"; -export const ColorSecondarySandgrey600 = "#71706b"; -export const ColorSecondarySandgrey700 = "#555550"; -export const ColorSecondarySandgrey800 = "#3a3936"; -export const ColorSecondarySandgrey900 = "#1e1e1c"; -export const FontFamily = "Roboto"; -export const FontWeightLight = 300; -export const FontWeightRegular = 400; -export const FontWeightSemiBold = 500; -export const Preset = "adeo"; -export const RadiusS = 2; -export const RadiusM = 4; -export const RadiusL = 6; -export const ShadowSX = "0px"; -export const ShadowSY = "1px"; -export const ShadowSBlur = "5px"; -export const ShadowSSpread = "0px"; -export const ShadowSOpacity = "0.2"; -export const ShadowMX = "0px"; -export const ShadowMY = "2px"; -export const ShadowMBlur = "10px"; -export const ShadowMSpread = "0px"; -export const ShadowMOpacity = "0.2"; -export const ShadowLX = "0px"; -export const ShadowLY = "4px"; -export const ShadowLBlur = "20px"; -export const ShadowLSpread = "0px"; -export const ShadowLOpacity = "0.2"; -export const MagicUnit = 1; -export const LocalRemValue = 16; -export const SizeFont10 = "2.5625rem"; // 41px -export const SizeFont11 = "3.0625rem"; // 49px -export const SizeFont12 = "3.6875rem"; // 59px -export const SizeFont01 = "0.6815rem"; // 11px -export const SizeFont02 = "0.75rem"; // 12px -export const SizeFont03 = "0.8125rem"; // 13px -export const SizeFont04 = "0.875rem"; // 14px -export const SizeFont05 = "1rem"; // 16px -export const SizeFont06 = "1.125rem"; // 18px -export const SizeFont07 = "1.4375rem"; // 23px -export const SizeFont08 = "1.75rem"; // 28px -export const SizeFont09 = "2.125rem"; // 34px -export const SizeLine10Xs = "2.5rem"; // 40px -export const SizeLine10S = "3rem"; // 48px -export const SizeLine10M = "3.5rem"; // 56px -export const SizeLine10L = "3.75rem"; // 60px -export const SizeLine11Xs = "3rem"; // 48px -export const SizeLine11S = "3.5rem"; // 56px -export const SizeLine11M = "4.25rem"; // 68px -export const SizeLine11L = "4.5rem"; // 72px -export const SizeLine12Xs = "3.75rem"; // 60px -export const SizeLine12S = "4.25rem"; // 68px -export const SizeLine12M = "5rem"; // 80px -export const SizeLine12L = "5.5rem"; // 88px -export const SizeLine01Xs = "0.75rem"; // 12px -export const SizeLine01S = "0.75rem"; // 12px -export const SizeLine01M = "0.875rem"; // 14px -export const SizeLine01L = "1rem"; // 16px -export const SizeLine02Xs = "0.75rem"; // 12px -export const SizeLine02S = "0.875rem"; // 14px -export const SizeLine02M = "1rem"; // 16px -export const SizeLine02L = "1.125rem"; // 18px -export const SizeLine03Xs = "0.875rem"; // 14px -export const SizeLine03S = "1rem"; // 16px -export const SizeLine03M = "1.125rem"; // 18px -export const SizeLine03L = "1.25rem"; // 20px -export const SizeLine04Xs = "0.875rem"; // 14px -export const SizeLine04S = "1rem"; // 16px -export const SizeLine04M = "1.125rem"; // 18px -export const SizeLine04L = "1.375rem"; // 22px -export const SizeLine05Xs = "1rem"; // 16px -export const SizeLine05S = "1.125rem"; // 18px -export const SizeLine05M = "1.375rem"; // 22px -export const SizeLine05L = "1.5rem"; // 24px -export const SizeLine06Xs = "1.125rem"; // 18px -export const SizeLine06S = "1.25rem"; // 20px -export const SizeLine06M = "1.5rem"; // 24px -export const SizeLine06L = "1.75rem"; // 28px -export const SizeLine07Xs = "1.5rem"; // 24px -export const SizeLine07S = "1.75rem"; // 28px -export const SizeLine07M = "2rem"; // 32px -export const SizeLine07L = "2.25rem"; // 36px -export const SizeLine08Xs = "1.75rem"; // 28px -export const SizeLine08S = "2rem"; // 32px -export const SizeLine08M = "2.25rem"; // 36px -export const SizeLine08L = "2.75rem"; // 44px -export const SizeLine09Xs = "2.25rem"; // 36px -export const SizeLine09S = "2.5rem"; // 40px -export const SizeLine09M = "2.75rem"; // 44px -export const SizeLine09L = "3.25rem"; // 52px -export const SizeGutterScreenS = "1rem"; -export const SizeGutterScreenM = "2rem"; -export const ScreenS = "0px"; -export const ScreenSMedium = "320px"; -export const ScreenSLarge = "360px"; -export const ScreenSXlarge = "390px"; -export const ScreenM = "680px"; -export const ScreenMMedium = "769px"; -export const ScreenL = "1024px"; -export const ScreenLMedium = "1100px"; -export const ScreenXl = "1280px"; -export const ScreenXlMedium = "1440px"; -export const ScreenXlLarge = "1680px"; -export const ScreenXxl = "1920px"; \ No newline at end of file diff --git a/packages/tokens/build/adeo/js/tokensObject.js b/packages/tokens/build/adeo/js/tokensObject.js deleted file mode 100644 index d26f7a153..000000000 --- a/packages/tokens/build/adeo/js/tokensObject.js +++ /dev/null @@ -1,12186 +0,0 @@ -module.exports = { - "border": { - "s": { - "value": 1, - "filePath": "packages/tokens/src/tokens/leroymerlin/border/base.json", - "isSource": true, - "original": { - "value": 1 - }, - "name": "BorderS", - "attributes": { - "category": "border", - "type": "s" - }, - "path": [ - "border", - "s" - ] - }, - "m": { - "value": 2, - "filePath": "packages/tokens/src/tokens/leroymerlin/border/base.json", - "isSource": true, - "original": { - "value": 2 - }, - "name": "BorderM", - "attributes": { - "category": "border", - "type": "m" - }, - "path": [ - "border", - "m" - ] - }, - "l": { - "value": 3, - "filePath": "packages/tokens/src/tokens/leroymerlin/border/base.json", - "isSource": true, - "original": { - "value": 3 - }, - "name": "BorderL", - "attributes": { - "category": "border", - "type": "l" - }, - "path": [ - "border", - "l" - ] - } - }, - "color": { - "badge": { - "info": { - "background": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.info.100.value}" - }, - "name": "ColorBadgeInfoBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "info", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "info", - "background" - ] - }, - "border": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.info.500.value}" - }, - "name": "ColorBadgeInfoBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "info", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "info", - "border" - ] - }, - "text": { - "value": "#005c91", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.info.700.value}" - }, - "name": "ColorBadgeInfoText", - "attributes": { - "category": "color", - "type": "badge", - "item": "info", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "info", - "text" - ] - } - }, - "success": { - "background": { - "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.success.100.value}" - }, - "name": "ColorBadgeSuccessBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "success", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "success", - "background" - ] - }, - "border": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.success.500.value}" - }, - "name": "ColorBadgeSuccessBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "success", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "success", - "border" - ] - }, - "text": { - "value": "#006902", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.success.700.value}" - }, - "name": "ColorBadgeSuccessText", - "attributes": { - "category": "color", - "type": "badge", - "item": "success", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "success", - "text" - ] - } - }, - "warning": { - "background": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.warning.100.value}" - }, - "name": "ColorBadgeWarningBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "warning", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "warning", - "background" - ] - }, - "border": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.warning.500.value}" - }, - "name": "ColorBadgeWarningBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "warning", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "warning", - "border" - ] - }, - "text": { - "value": "#8c3500", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.warning.700.value}" - }, - "name": "ColorBadgeWarningText", - "attributes": { - "category": "color", - "type": "badge", - "item": "warning", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "warning", - "text" - ] - } - }, - "danger": { - "background": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.danger.100.value}" - }, - "name": "ColorBadgeDangerBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "danger", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "danger", - "background" - ] - }, - "border": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.danger.500.value}" - }, - "name": "ColorBadgeDangerBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "danger", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "danger", - "border" - ] - }, - "text": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorBadgeDangerText", - "attributes": { - "category": "color", - "type": "badge", - "item": "danger", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "danger", - "text" - ] - } - }, - "neutral": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorBadgeNeutralBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "neutral", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "neutral", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorBadgeNeutralBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "neutral", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "neutral", - "border" - ] - }, - "text": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorBadgeNeutralText", - "attributes": { - "category": "color", - "type": "badge", - "item": "neutral", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "neutral", - "text" - ] - } - } - }, - "primary-01": { - "100": { - "value": "#d9f0f3", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#D9F0F3" - }, - "name": "ColorPrimary01100", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "100" - }, - "path": [ - "color", - "primary-01", - "100" - ] - }, - "200": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#91D5DB" - }, - "name": "ColorPrimary01200", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "200" - }, - "path": [ - "color", - "primary-01", - "200" - ] - }, - "300": { - "value": "#48bac4", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#48BAC4" - }, - "name": "ColorPrimary01300", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "300" - }, - "path": [ - "color", - "primary-01", - "300" - ] - }, - "400": { - "value": "#009eac", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#009EAC" - }, - "name": "ColorPrimary01400", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "400" - }, - "path": [ - "color", - "primary-01", - "400" - ] - }, - "500": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#00919F" - }, - "name": "ColorPrimary01500", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "500" - }, - "path": [ - "color", - "primary-01", - "500" - ] - }, - "600": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#007F8C" - }, - "name": "ColorPrimary01600", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "600" - }, - "path": [ - "color", - "primary-01", - "600" - ] - }, - "700": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#006974" - }, - "name": "ColorPrimary01700", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "700" - }, - "path": [ - "color", - "primary-01", - "700" - ] - }, - "800": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#004E57" - }, - "name": "ColorPrimary01800", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "800" - }, - "path": [ - "color", - "primary-01", - "800" - ] - }, - "900": { - "value": "#002e33", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#002E33" - }, - "name": "ColorPrimary01900", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "900" - }, - "path": [ - "color", - "primary-01", - "900" - ] - } - }, - "primary-02": { - "100": { - "value": "#eeeff1", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EEEFF1" - }, - "name": "ColorPrimary02100", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "100" - }, - "path": [ - "color", - "primary-02", - "100" - ] - }, - "200": { - "value": "#cfd2d8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#CFD2D8" - }, - "name": "ColorPrimary02200", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "200" - }, - "path": [ - "color", - "primary-02", - "200" - ] - }, - "300": { - "value": "#b3b7c1", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#B3B7C1" - }, - "name": "ColorPrimary02300", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "300" - }, - "path": [ - "color", - "primary-02", - "300" - ] - }, - "400": { - "value": "#8f94a3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#8F94A3" - }, - "name": "ColorPrimary02400", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "400" - }, - "path": [ - "color", - "primary-02", - "400" - ] - }, - "500": { - "value": "#6a7081", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#6A7081" - }, - "name": "ColorPrimary02500", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "500" - }, - "path": [ - "color", - "primary-02", - "500" - ] - }, - "600": { - "value": "#494f60", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#494F60" - }, - "name": "ColorPrimary02600", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "600" - }, - "path": [ - "color", - "primary-02", - "600" - ] - }, - "700": { - "value": "#343b4c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#343B4C" - }, - "name": "ColorPrimary02700", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "700" - }, - "path": [ - "color", - "primary-02", - "700" - ] - }, - "800": { - "value": "#242938", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#242938" - }, - "name": "ColorPrimary02800", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "800" - }, - "path": [ - "color", - "primary-02", - "800" - ] - }, - "900": { - "value": "#171b26", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#171B26" - }, - "name": "ColorPrimary02900", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "900" - }, - "path": [ - "color", - "primary-02", - "900" - ] - } - }, - "grey": { - "100": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#E6E6E6" - }, - "name": "ColorGrey100", - "attributes": { - "category": "color", - "type": "grey", - "item": "100" - }, - "path": [ - "color", - "grey", - "100" - ] - }, - "200": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#CCCCCC" - }, - "name": "ColorGrey200", - "attributes": { - "category": "color", - "type": "grey", - "item": "200" - }, - "path": [ - "color", - "grey", - "200" - ] - }, - "300": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#B3B3B3" - }, - "name": "ColorGrey300", - "attributes": { - "category": "color", - "type": "grey", - "item": "300" - }, - "path": [ - "color", - "grey", - "300" - ] - }, - "400": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#999999" - }, - "name": "ColorGrey400", - "attributes": { - "category": "color", - "type": "grey", - "item": "400" - }, - "path": [ - "color", - "grey", - "400" - ] - }, - "500": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#808080" - }, - "name": "ColorGrey500", - "attributes": { - "category": "color", - "type": "grey", - "item": "500" - }, - "path": [ - "color", - "grey", - "500" - ] - }, - "600": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#666666" - }, - "name": "ColorGrey600", - "attributes": { - "category": "color", - "type": "grey", - "item": "600" - }, - "path": [ - "color", - "grey", - "600" - ] - }, - "700": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#4D4D4D" - }, - "name": "ColorGrey700", - "attributes": { - "category": "color", - "type": "grey", - "item": "700" - }, - "path": [ - "color", - "grey", - "700" - ] - }, - "800": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#333333" - }, - "name": "ColorGrey800", - "attributes": { - "category": "color", - "type": "grey", - "item": "800" - }, - "path": [ - "color", - "grey", - "800" - ] - }, - "900": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#191919" - }, - "name": "ColorGrey900", - "attributes": { - "category": "color", - "type": "grey", - "item": "900" - }, - "path": [ - "color", - "grey", - "900" - ] - }, - "999": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#000000" - }, - "name": "ColorGrey999", - "attributes": { - "category": "color", - "type": "grey", - "item": "999" - }, - "path": [ - "color", - "grey", - "999" - ] - }, - "000": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#FFFFFF" - }, - "name": "ColorGrey000", - "attributes": { - "category": "color", - "type": "grey", - "item": "000" - }, - "path": [ - "color", - "grey", - "000" - ] - } - }, - "secondary-blue": { - "100": { - "value": "#eaedef", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EAEDEF" - }, - "name": "ColorSecondaryBlue100", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "100" - }, - "path": [ - "color", - "secondary-blue", - "100" - ] - }, - "200": { - "value": "#cdd4d8", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#CDD4D8" - }, - "name": "ColorSecondaryBlue200", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "200" - }, - "path": [ - "color", - "secondary-blue", - "200" - ] - }, - "300": { - "value": "#b0bbc0", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#B0BBC0" - }, - "name": "ColorSecondaryBlue300", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "300" - }, - "path": [ - "color", - "secondary-blue", - "300" - ] - }, - "400": { - "value": "#92a2a9", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#92A2A9" - }, - "name": "ColorSecondaryBlue400", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "400" - }, - "path": [ - "color", - "secondary-blue", - "400" - ] - }, - "500": { - "value": "#758992", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#758992" - }, - "name": "ColorSecondaryBlue500", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "500" - }, - "path": [ - "color", - "secondary-blue", - "500" - ] - }, - "600": { - "value": "#5b737d", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#5B737D" - }, - "name": "ColorSecondaryBlue600", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "600" - }, - "path": [ - "color", - "secondary-blue", - "600" - ] - }, - "700": { - "value": "#405d68", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#405D68" - }, - "name": "ColorSecondaryBlue700", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "700" - }, - "path": [ - "color", - "secondary-blue", - "700" - ] - }, - "800": { - "value": "#264653", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#264653" - }, - "name": "ColorSecondaryBlue800", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "800" - }, - "path": [ - "color", - "secondary-blue", - "800" - ] - }, - "900": { - "value": "#082435", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#082435" - }, - "name": "ColorSecondaryBlue900", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "900" - }, - "path": [ - "color", - "secondary-blue", - "900" - ] - } - }, - "secondary-green": { - "100": { - "value": "#d9f0f3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorSecondaryGreen100", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "100" - }, - "path": [ - "color", - "secondary-green", - "100" - ] - }, - "200": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorSecondaryGreen200", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "200" - }, - "path": [ - "color", - "secondary-green", - "200" - ] - }, - "300": { - "value": "#48bac4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.300.value}" - }, - "name": "ColorSecondaryGreen300", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "300" - }, - "path": [ - "color", - "secondary-green", - "300" - ] - }, - "400": { - "value": "#009eac", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.400.value}" - }, - "name": "ColorSecondaryGreen400", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "400" - }, - "path": [ - "color", - "secondary-green", - "400" - ] - }, - "500": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorSecondaryGreen500", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "500" - }, - "path": [ - "color", - "secondary-green", - "500" - ] - }, - "600": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorSecondaryGreen600", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "600" - }, - "path": [ - "color", - "secondary-green", - "600" - ] - }, - "700": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorSecondaryGreen700", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "700" - }, - "path": [ - "color", - "secondary-green", - "700" - ] - }, - "800": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorSecondaryGreen800", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "800" - }, - "path": [ - "color", - "secondary-green", - "800" - ] - }, - "900": { - "value": "#002e33", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.900.value}" - }, - "name": "ColorSecondaryGreen900", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "900" - }, - "path": [ - "color", - "secondary-green", - "900" - ] - } - }, - "secondary-purple": { - "100": { - "value": "#e7e7f0", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#E7E7F0" - }, - "name": "ColorSecondaryPurple100", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "100" - }, - "path": [ - "color", - "secondary-purple", - "100" - ] - }, - "200": { - "value": "#c5c5dc", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#C5C5DC" - }, - "name": "ColorSecondaryPurple200", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "200" - }, - "path": [ - "color", - "secondary-purple", - "200" - ] - }, - "300": { - "value": "#a4a3c7", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#A4A3C7" - }, - "name": "ColorSecondaryPurple300", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "300" - }, - "path": [ - "color", - "secondary-purple", - "300" - ] - }, - "400": { - "value": "#8281b2", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#8281B2" - }, - "name": "ColorSecondaryPurple400", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "400" - }, - "path": [ - "color", - "secondary-purple", - "400" - ] - }, - "500": { - "value": "#605f9d", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#605F9D" - }, - "name": "ColorSecondaryPurple500", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "500" - }, - "path": [ - "color", - "secondary-purple", - "500" - ] - }, - "600": { - "value": "#4b4a8c", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#4B4A8C" - }, - "name": "ColorSecondaryPurple600", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "600" - }, - "path": [ - "color", - "secondary-purple", - "600" - ] - }, - "700": { - "value": "#393879", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#393879" - }, - "name": "ColorSecondaryPurple700", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "700" - }, - "path": [ - "color", - "secondary-purple", - "700" - ] - }, - "800": { - "value": "#282863", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#282863" - }, - "name": "ColorSecondaryPurple800", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "800" - }, - "path": [ - "color", - "secondary-purple", - "800" - ] - }, - "900": { - "value": "#1a1a4b", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#1A1A4B" - }, - "name": "ColorSecondaryPurple900", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "900" - }, - "path": [ - "color", - "secondary-purple", - "900" - ] - } - }, - "secondary-red": { - "100": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FDEAEA" - }, - "name": "ColorSecondaryRed100", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "100" - }, - "path": [ - "color", - "secondary-red", - "100" - ] - }, - "200": { - "value": "#f8bcbb", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F8BCBB" - }, - "name": "ColorSecondaryRed200", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "200" - }, - "path": [ - "color", - "secondary-red", - "200" - ] - }, - "300": { - "value": "#f38d8c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F38D8C" - }, - "name": "ColorSecondaryRed300", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "300" - }, - "path": [ - "color", - "secondary-red", - "300" - ] - }, - "400": { - "value": "#ef5f5c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EF5F5C" - }, - "name": "ColorSecondaryRed400", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "400" - }, - "path": [ - "color", - "secondary-red", - "400" - ] - }, - "500": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EA302D" - }, - "name": "ColorSecondaryRed500", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "500" - }, - "path": [ - "color", - "secondary-red", - "500" - ] - }, - "600": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C61112" - }, - "name": "ColorSecondaryRed600", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "600" - }, - "path": [ - "color", - "secondary-red", - "600" - ] - }, - "700": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#8C0003" - }, - "name": "ColorSecondaryRed700", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "700" - }, - "path": [ - "color", - "secondary-red", - "700" - ] - }, - "800": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#530000" - }, - "name": "ColorSecondaryRed800", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "800" - }, - "path": [ - "color", - "secondary-red", - "800" - ] - }, - "900": { - "value": "#2d0000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#2D0000" - }, - "name": "ColorSecondaryRed900", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "900" - }, - "path": [ - "color", - "secondary-red", - "900" - ] - } - }, - "secondary-orange": { - "100": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FDF1E8" - }, - "name": "ColorSecondaryOrange100", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "100" - }, - "path": [ - "color", - "secondary-orange", - "100" - ] - }, - "200": { - "value": "#f8d2b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F8D2B3" - }, - "name": "ColorSecondaryOrange200", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "200" - }, - "path": [ - "color", - "secondary-orange", - "200" - ] - }, - "300": { - "value": "#f4b27e", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F4B27E" - }, - "name": "ColorSecondaryOrange300", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "300" - }, - "path": [ - "color", - "secondary-orange", - "300" - ] - }, - "400": { - "value": "#ef934a", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EF934A" - }, - "name": "ColorSecondaryOrange400", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "400" - }, - "path": [ - "color", - "secondary-orange", - "400" - ] - }, - "500": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EA7315" - }, - "name": "ColorSecondaryOrange500", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "500" - }, - "path": [ - "color", - "secondary-orange", - "500" - ] - }, - "600": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C65200" - }, - "name": "ColorSecondaryOrange600", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "600" - }, - "path": [ - "color", - "secondary-orange", - "600" - ] - }, - "700": { - "value": "#8c3500", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#8C3500" - }, - "name": "ColorSecondaryOrange700", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "700" - }, - "path": [ - "color", - "secondary-orange", - "700" - ] - }, - "800": { - "value": "#531b00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#531B00" - }, - "name": "ColorSecondaryOrange800", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "800" - }, - "path": [ - "color", - "secondary-orange", - "800" - ] - }, - "900": { - "value": "#360e00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#360E00" - }, - "name": "ColorSecondaryOrange900", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "900" - }, - "path": [ - "color", - "secondary-orange", - "900" - ] - } - }, - "secondary-yellow": { - "100": { - "value": "#fff8e2", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FFF8E2" - }, - "name": "ColorSecondaryYellow100", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "100" - }, - "path": [ - "color", - "secondary-yellow", - "100" - ] - }, - "200": { - "value": "#ffebaf", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FFEBAF" - }, - "name": "ColorSecondaryYellow200", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "200" - }, - "path": [ - "color", - "secondary-yellow", - "200" - ] - }, - "300": { - "value": "#fee07d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FEE07D" - }, - "name": "ColorSecondaryYellow300", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "300" - }, - "path": [ - "color", - "secondary-yellow", - "300" - ] - }, - "400": { - "value": "#fcd64c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FCD64C" - }, - "name": "ColorSecondaryYellow400", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "400" - }, - "path": [ - "color", - "secondary-yellow", - "400" - ] - }, - "500": { - "value": "#f8cc1c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F8CC1C" - }, - "name": "ColorSecondaryYellow500", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "500" - }, - "path": [ - "color", - "secondary-yellow", - "500" - ] - }, - "600": { - "value": "#c9a21b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C9A21B" - }, - "name": "ColorSecondaryYellow600", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "600" - }, - "path": [ - "color", - "secondary-yellow", - "600" - ] - }, - "700": { - "value": "#9c7b18", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#9C7B18" - }, - "name": "ColorSecondaryYellow700", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "700" - }, - "path": [ - "color", - "secondary-yellow", - "700" - ] - }, - "800": { - "value": "#705613", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#705613" - }, - "name": "ColorSecondaryYellow800", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "800" - }, - "path": [ - "color", - "secondary-yellow", - "800" - ] - }, - "900": { - "value": "#46350d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#46350D" - }, - "name": "ColorSecondaryYellow900", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "900" - }, - "path": [ - "color", - "secondary-yellow", - "900" - ] - } - }, - "danger": { - "100": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#FDEAEA" - }, - "name": "ColorDanger100", - "attributes": { - "category": "color", - "type": "danger", - "item": "100" - }, - "path": [ - "color", - "danger", - "100" - ] - }, - "200": { - "value": "#f8bcbb", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#F8BCBB" - }, - "name": "ColorDanger200", - "attributes": { - "category": "color", - "type": "danger", - "item": "200" - }, - "path": [ - "color", - "danger", - "200" - ] - }, - "300": { - "value": "#f38d8c", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#F38D8C" - }, - "name": "ColorDanger300", - "attributes": { - "category": "color", - "type": "danger", - "item": "300" - }, - "path": [ - "color", - "danger", - "300" - ] - }, - "400": { - "value": "#ef5f5c", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EF5F5C" - }, - "name": "ColorDanger400", - "attributes": { - "category": "color", - "type": "danger", - "item": "400" - }, - "path": [ - "color", - "danger", - "400" - ] - }, - "500": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EA302D" - }, - "name": "ColorDanger500", - "attributes": { - "category": "color", - "type": "danger", - "item": "500" - }, - "path": [ - "color", - "danger", - "500" - ] - }, - "600": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#C61112" - }, - "name": "ColorDanger600", - "attributes": { - "category": "color", - "type": "danger", - "item": "600" - }, - "path": [ - "color", - "danger", - "600" - ] - }, - "700": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#8C0003" - }, - "name": "ColorDanger700", - "attributes": { - "category": "color", - "type": "danger", - "item": "700" - }, - "path": [ - "color", - "danger", - "700" - ] - }, - "800": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#530000" - }, - "name": "ColorDanger800", - "attributes": { - "category": "color", - "type": "danger", - "item": "800" - }, - "path": [ - "color", - "danger", - "800" - ] - }, - "900": { - "value": "#2d0000", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#2D0000" - }, - "name": "ColorDanger900", - "attributes": { - "category": "color", - "type": "danger", - "item": "900" - }, - "path": [ - "color", - "danger", - "900" - ] - } - }, - "info": { - "100": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#DAEFF7" - }, - "name": "ColorInfo100", - "attributes": { - "category": "color", - "type": "info", - "item": "100" - }, - "path": [ - "color", - "info", - "100" - ] - }, - "200": { - "value": "#a7d9ed", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#A7D9ED" - }, - "name": "ColorInfo200", - "attributes": { - "category": "color", - "type": "info", - "item": "200" - }, - "path": [ - "color", - "info", - "200" - ] - }, - "300": { - "value": "#73c3e2", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#73C3E2" - }, - "name": "ColorInfo300", - "attributes": { - "category": "color", - "type": "info", - "item": "300" - }, - "path": [ - "color", - "info", - "300" - ] - }, - "400": { - "value": "#3facd7", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#3FACD7" - }, - "name": "ColorInfo400", - "attributes": { - "category": "color", - "type": "info", - "item": "400" - }, - "path": [ - "color", - "info", - "400" - ] - }, - "500": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#0B96CC" - }, - "name": "ColorInfo500", - "attributes": { - "category": "color", - "type": "info", - "item": "500" - }, - "path": [ - "color", - "info", - "500" - ] - }, - "600": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#007BB4" - }, - "name": "ColorInfo600", - "attributes": { - "category": "color", - "type": "info", - "item": "600" - }, - "path": [ - "color", - "info", - "600" - ] - }, - "700": { - "value": "#005c91", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#005C91" - }, - "name": "ColorInfo700", - "attributes": { - "category": "color", - "type": "info", - "item": "700" - }, - "path": [ - "color", - "info", - "700" - ] - }, - "800": { - "value": "#003a5c", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#003A5C" - }, - "name": "ColorInfo800", - "attributes": { - "category": "color", - "type": "info", - "item": "800" - }, - "path": [ - "color", - "info", - "800" - ] - }, - "900": { - "value": "#002a41", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#002A41" - }, - "name": "ColorInfo900", - "attributes": { - "category": "color", - "type": "info", - "item": "900" - }, - "path": [ - "color", - "info", - "900" - ] - } - }, - "warning": { - "100": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#FDF1E8" - }, - "name": "ColorWarning100", - "attributes": { - "category": "color", - "type": "warning", - "item": "100" - }, - "path": [ - "color", - "warning", - "100" - ] - }, - "200": { - "value": "#f8d2b3", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#F8D2B3" - }, - "name": "ColorWarning200", - "attributes": { - "category": "color", - "type": "warning", - "item": "200" - }, - "path": [ - "color", - "warning", - "200" - ] - }, - "300": { - "value": "#f4b27e", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#F4B27E" - }, - "name": "ColorWarning300", - "attributes": { - "category": "color", - "type": "warning", - "item": "300" - }, - "path": [ - "color", - "warning", - "300" - ] - }, - "400": { - "value": "#ef934a", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EF934A" - }, - "name": "ColorWarning400", - "attributes": { - "category": "color", - "type": "warning", - "item": "400" - }, - "path": [ - "color", - "warning", - "400" - ] - }, - "500": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EA7315" - }, - "name": "ColorWarning500", - "attributes": { - "category": "color", - "type": "warning", - "item": "500" - }, - "path": [ - "color", - "warning", - "500" - ] - }, - "600": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#C65200" - }, - "name": "ColorWarning600", - "attributes": { - "category": "color", - "type": "warning", - "item": "600" - }, - "path": [ - "color", - "warning", - "600" - ] - }, - "700": { - "value": "#8c3500", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#8C3500" - }, - "name": "ColorWarning700", - "attributes": { - "category": "color", - "type": "warning", - "item": "700" - }, - "path": [ - "color", - "warning", - "700" - ] - }, - "800": { - "value": "#531b00", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#531B00" - }, - "name": "ColorWarning800", - "attributes": { - "category": "color", - "type": "warning", - "item": "800" - }, - "path": [ - "color", - "warning", - "800" - ] - }, - "900": { - "value": "#360e00", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#360E00" - }, - "name": "ColorWarning900", - "attributes": { - "category": "color", - "type": "warning", - "item": "900" - }, - "path": [ - "color", - "warning", - "900" - ] - } - }, - "success": { - "100": { - "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EBF5DE" - }, - "name": "ColorSuccess100", - "attributes": { - "category": "color", - "type": "success", - "item": "100" - }, - "path": [ - "color", - "success", - "100" - ] - }, - "200": { - "value": "#c5e39e", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#C5E39E" - }, - "name": "ColorSuccess200", - "attributes": { - "category": "color", - "type": "success", - "item": "200" - }, - "path": [ - "color", - "success", - "200" - ] - }, - "300": { - "value": "#9ed05f", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#9ED05F" - }, - "name": "ColorSuccess300", - "attributes": { - "category": "color", - "type": "success", - "item": "300" - }, - "path": [ - "color", - "success", - "300" - ] - }, - "400": { - "value": "#78be20", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#78BE20" - }, - "name": "ColorSuccess400", - "attributes": { - "category": "color", - "type": "success", - "item": "400" - }, - "path": [ - "color", - "success", - "400" - ] - }, - "500": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#46A610" - }, - "name": "ColorSuccess500", - "attributes": { - "category": "color", - "type": "success", - "item": "500" - }, - "path": [ - "color", - "success", - "500" - ] - }, - "600": { - "value": "#188803", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#188803" - }, - "name": "ColorSuccess600", - "attributes": { - "category": "color", - "type": "success", - "item": "600" - }, - "path": [ - "color", - "success", - "600" - ] - }, - "700": { - "value": "#006902", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#006902" - }, - "name": "ColorSuccess700", - "attributes": { - "category": "color", - "type": "success", - "item": "700" - }, - "path": [ - "color", - "success", - "700" - ] - }, - "800": { - "value": "#035010", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#035010" - }, - "name": "ColorSuccess800", - "attributes": { - "category": "color", - "type": "success", - "item": "800" - }, - "path": [ - "color", - "success", - "800" - ] - }, - "900": { - "value": "#023618", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#023618" - }, - "name": "ColorSuccess900", - "attributes": { - "category": "color", - "type": "success", - "item": "900" - }, - "path": [ - "color", - "success", - "900" - ] - } - }, - "breadcrumb": { - "arrow": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/breadcrumb.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorBreadcrumbArrow", - "attributes": { - "category": "color", - "type": "breadcrumb", - "item": "arrow" - }, - "path": [ - "color", - "breadcrumb", - "arrow" - ] - }, - "arrow-invert": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/breadcrumb.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorBreadcrumbArrowInvert", - "attributes": { - "category": "color", - "type": "breadcrumb", - "item": "arrow-invert" - }, - "path": [ - "color", - "breadcrumb", - "arrow-invert" - ] - } - }, - "button": { - "solid": { - "background": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorButtonSolidBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid", - "font" - ] - }, - "focus": { - "border": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonSolidFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonSolidActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonSolidHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid", - "hover", - "font" - ] - } - } - }, - "solid-primary-02": { - "background": { - "value": "#6a7081", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.500.value}" - }, - "name": "ColorButtonSolidPrimary02Background", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidPrimary02Font", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "font" - ] - }, - "focus": { - "border": { - "value": "#171b26", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorButtonSolidPrimary02FocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidPrimary02DisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidPrimary02DisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#171b26", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorButtonSolidPrimary02ActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#242938", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.800.value}" - }, - "name": "ColorButtonSolidPrimary02HoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidPrimary02HoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "hover", - "font" - ] - } - } - }, - "solid-neutral": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonSolidNeutralBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidNeutralFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid-neutral", - "font" - ] - }, - "focus": { - "border": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorButtonSolidNeutralFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid-neutral", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidNeutralDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidNeutralDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-neutral", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonSolidNeutralActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorButtonSolidNeutralHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidNeutralHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-neutral", - "hover", - "font" - ] - } - } - }, - "solid-danger": { - "background": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorButtonSolidDangerBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidDangerFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid-danger", - "font" - ] - }, - "focus": { - "border": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonSolidDangerFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid-danger", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidDangerDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidDangerDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-danger", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonSolidDangerActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonSolidDangerHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidDangerHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-danger", - "hover", - "font" - ] - } - } - }, - "bordered": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered", - "background" - ] - }, - "border": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorButtonBorderedBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered", - "border" - ] - }, - "font": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorButtonBorderedFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered", - "font" - ] - }, - "focus": { - "border": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonBorderedFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorButtonBorderedActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered", - "active", - "background" - ] - }, - "font": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorButtonBorderedActiveFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "active", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered", - "active", - "font" - ] - } - }, - "hover": { - "background": { - "value": "#d9f0f3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorButtonBorderedHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered", - "hover", - "background" - ] - }, - "font": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonBorderedHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered", - "hover", - "font" - ] - } - } - }, - "bordered-primary-02": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedPrimary02Background", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "background" - ] - }, - "border": { - "value": "#6a7081", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.500.value}" - }, - "name": "ColorButtonBorderedPrimary02Border", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "border" - ] - }, - "font": { - "value": "#6a7081", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.500.value}" - }, - "name": "ColorButtonBorderedPrimary02Font", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "font" - ] - }, - "focus": { - "border": { - "value": "#171b26", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorButtonBorderedPrimary02FocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedPrimary02DisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedPrimary02DisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#cfd2d8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.200.value}" - }, - "name": "ColorButtonBorderedPrimary02ActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#eeeff1", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.100.value}" - }, - "name": "ColorButtonBorderedPrimary02HoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "hover", - "background" - ] - } - } - }, - "bordered-neutral": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedNeutralBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "background" - ] - }, - "border": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonBorderedNeutralBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "border" - ] - }, - "font": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonBorderedNeutralFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "font" - ] - }, - "focus": { - "border": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorButtonBorderedNeutralFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedNeutralDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedNeutralDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedNeutralActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorButtonBorderedNeutralHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "hover", - "background" - ] - } - } - }, - "bordered-danger": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedDangerBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "background" - ] - }, - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorButtonBorderedDangerBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered-danger", - "border" - ] - }, - "font": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorButtonBorderedDangerFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "font" - ] - }, - "focus": { - "border": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.700.value}" - }, - "name": "ColorButtonBorderedDangerFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered-danger", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedDangerDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedDangerDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#f8bcbb", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.200.value}" - }, - "name": "ColorButtonBorderedDangerActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "active", - "background" - ] - }, - "font": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.800.value}" - }, - "name": "ColorButtonBorderedDangerActiveFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "active", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "active", - "font" - ] - } - }, - "hover": { - "background": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.100.value}" - }, - "name": "ColorButtonBorderedDangerHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "hover", - "background" - ] - }, - "font": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonBorderedDangerHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "hover", - "font" - ] - } - } - } - }, - "card": { - "bordered": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/card.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorCardBorderedBackground", - "attributes": { - "category": "color", - "type": "card", - "item": "bordered", - "subitem": "background" - }, - "path": [ - "color", - "card", - "bordered", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/card.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorCardBorderedBorder", - "attributes": { - "category": "color", - "type": "card", - "item": "bordered", - "subitem": "border" - }, - "path": [ - "color", - "card", - "bordered", - "border" - ] - } - } - }, - "datatable": { - "filters": { - "border": { - "value": "#b0bbc0", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.300.value}" - }, - "name": "ColorDatatableFiltersBorder", - "attributes": { - "category": "color", - "type": "datatable", - "item": "filters", - "subitem": "border" - }, - "path": [ - "color", - "datatable", - "filters", - "border" - ] - } - }, - "container": { - "background": { - "value": "#e7e7f0", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.100.value}" - }, - "name": "ColorDatatableContainerBackground", - "attributes": { - "category": "color", - "type": "datatable", - "item": "container", - "subitem": "background" - }, - "path": [ - "color", - "datatable", - "container", - "background" - ] - } - }, - "thead": { - "font": { - "value": "#393879", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.700.value}" - }, - "name": "ColorDatatableTheadFont", - "attributes": { - "category": "color", - "type": "datatable", - "item": "thead", - "subitem": "font" - }, - "path": [ - "color", - "datatable", - "thead", - "font" - ] - } - }, - "sort-arrow": { - "default": { - "value": "#cdd4d8", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.200.value}" - }, - "name": "ColorDatatableSortArrowDefault", - "attributes": { - "category": "color", - "type": "datatable", - "item": "sort-arrow", - "subitem": "default" - }, - "path": [ - "color", - "datatable", - "sort-arrow", - "default" - ] - }, - "active": { - "value": "#605f9d", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.500.value}" - }, - "name": "ColorDatatableSortArrowActive", - "attributes": { - "category": "color", - "type": "datatable", - "item": "sort-arrow", - "subitem": "active" - }, - "path": [ - "color", - "datatable", - "sort-arrow", - "active" - ] - } - }, - "cell": { - "font": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorDatatableCellFont", - "attributes": { - "category": "color", - "type": "datatable", - "item": "cell", - "subitem": "font" - }, - "path": [ - "color", - "datatable", - "cell", - "font" - ] - }, - "background": { - "hover": { - "value": "#eaedef", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.100.value}" - }, - "name": "ColorDatatableCellBackgroundHover", - "attributes": { - "category": "color", - "type": "datatable", - "item": "cell", - "subitem": "background", - "state": "hover" - }, - "path": [ - "color", - "datatable", - "cell", - "background", - "hover" - ] - }, - "selected": { - "value": "#d9f0f3", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorDatatableCellBackgroundSelected", - "attributes": { - "category": "color", - "type": "datatable", - "item": "cell", - "subitem": "background", - "state": "selected" - }, - "path": [ - "color", - "datatable", - "cell", - "background", - "selected" - ] - } - } - }, - "subtable": { - "background": { - "value": "#e7e7f0", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.100.value}" - }, - "name": "ColorDatatableSubtableBackground", - "attributes": { - "category": "color", - "type": "datatable", - "item": "subtable", - "subitem": "background" - }, - "path": [ - "color", - "datatable", - "subtable", - "background" - ] - }, - "border": { - "value": "#a4a3c7", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.300.value}" - }, - "name": "ColorDatatableSubtableBorder", - "attributes": { - "category": "color", - "type": "datatable", - "item": "subtable", - "subitem": "border" - }, - "path": [ - "color", - "datatable", - "subtable", - "border" - ] - }, - "font": { - "value": "#1a1a4b", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.900.value}" - }, - "name": "ColorDatatableSubtableFont", - "attributes": { - "category": "color", - "type": "datatable", - "item": "subtable", - "subitem": "font" - }, - "path": [ - "color", - "datatable", - "subtable", - "font" - ] - } - }, - "icon": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorDatatableIcon", - "attributes": { - "category": "color", - "type": "datatable", - "item": "icon" - }, - "path": [ - "color", - "datatable", - "icon" - ] - } - }, - "dialog": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorDialogBackground", - "attributes": { - "category": "color", - "type": "dialog", - "item": "background" - }, - "path": [ - "color", - "dialog", - "background" - ] - }, - "icon": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorDialogIcon", - "attributes": { - "category": "color", - "type": "dialog", - "item": "icon" - }, - "path": [ - "color", - "dialog", - "icon" - ] - }, - "close": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorDialogClose", - "attributes": { - "category": "color", - "type": "dialog", - "item": "close" - }, - "path": [ - "color", - "dialog", - "close" - ] - }, - "footer": { - "shadow": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorDialogFooterShadow", - "attributes": { - "category": "color", - "type": "dialog", - "item": "footer", - "subitem": "shadow" - }, - "path": [ - "color", - "dialog", - "footer", - "shadow" - ] - } - } - }, - "divider": { - "lightest": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorDividerLightest", - "attributes": { - "category": "color", - "type": "divider", - "item": "lightest" - }, - "path": [ - "color", - "divider", - "lightest" - ] - }, - "light": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorDividerLight", - "attributes": { - "category": "color", - "type": "divider", - "item": "light" - }, - "path": [ - "color", - "divider", - "light" - ] - }, - "default": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorDividerDefault", - "attributes": { - "category": "color", - "type": "divider", - "item": "default" - }, - "path": [ - "color", - "divider", - "default" - ] - }, - "dark": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorDividerDark", - "attributes": { - "category": "color", - "type": "divider", - "item": "dark" - }, - "path": [ - "color", - "divider", - "dark" - ] - } - }, - "fields": { - "error": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.danger.value}" - }, - "name": "ColorFieldsError", - "attributes": { - "category": "color", - "type": "fields", - "item": "error" - }, - "path": [ - "color", - "fields", - "error" - ] - }, - "label": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.dark.value}" - }, - "name": "ColorFieldsLabel", - "attributes": { - "category": "color", - "type": "fields", - "item": "label" - }, - "path": [ - "color", - "fields", - "label" - ] - }, - "requirement": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.light.value}" - }, - "name": "ColorFieldsRequirement", - "attributes": { - "category": "color", - "type": "fields", - "item": "requirement" - }, - "path": [ - "color", - "fields", - "requirement" - ] - }, - "help": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.light.value}" - }, - "name": "ColorFieldsHelp", - "attributes": { - "category": "color", - "type": "fields", - "item": "help" - }, - "path": [ - "color", - "fields", - "help" - ] - } - }, - "fileuploader": { - "font": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFileuploaderFont", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "font" - }, - "path": [ - "color", - "fileuploader", - "font" - ] - }, - "files": { - "list": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorFileuploaderFilesList", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "files", - "subitem": "list" - }, - "path": [ - "color", - "fileuploader", - "files", - "list" - ] - }, - "delete": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorFileuploaderFilesDelete", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "files", - "subitem": "delete" - }, - "path": [ - "color", - "fileuploader", - "files", - "delete" - ] - } - }, - "valid": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorFileuploaderValid", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "valid" - }, - "path": [ - "color", - "fileuploader", - "valid" - ] - }, - "alert": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorFileuploaderAlert", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "alert" - }, - "path": [ - "color", - "fileuploader", - "alert" - ] - } - }, - "flag": { - "solid": { - "background": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagSolidBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid", - "background" - ] - }, - "border": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagSolidBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid", - "text" - ] - } - }, - "solid-primary-02": { - "background": { - "value": "#4b4a8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.600.value}" - }, - "name": "ColorFlagSolidPrimary02Background", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-primary-02", - "background" - ] - }, - "border": { - "value": "#4b4a8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.600.value}" - }, - "name": "ColorFlagSolidPrimary02Border", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-primary-02", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-primary-02", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidPrimary02Text", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-primary-02", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-primary-02", - "text" - ] - } - }, - "solid-dark": { - "background": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagSolidDarkBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-dark", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-dark", - "background" - ] - }, - "border": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagSolidDarkBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-dark", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidDarkText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-dark", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-dark", - "text" - ] - } - }, - "solid-light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidLightBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-light", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-light", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidLightBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-light", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-light", - "border" - ] - }, - "text": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagSolidLightText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-light", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-light", - "text" - ] - } - }, - "solid-danger": { - "background": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagSolidDangerBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-danger", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-danger", - "background" - ] - }, - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagSolidDangerBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-danger", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-danger", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidDangerText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-danger", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-danger", - "text" - ] - } - }, - "bordered": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered", - "background" - ] - }, - "border": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagBorderedBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered", - "border" - ] - }, - "text": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagBorderedText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered", - "text" - ] - } - }, - "bordered-primary-02": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedPrimary02Background", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-primary-02", - "background" - ] - }, - "border": { - "value": "#4b4a8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.600.value}" - }, - "name": "ColorFlagBorderedPrimary02Border", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-primary-02", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-primary-02", - "border" - ] - }, - "text": { - "value": "#4b4a8c", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-purple.600.value}" - }, - "name": "ColorFlagBorderedPrimary02Text", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-primary-02", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-primary-02", - "text" - ] - } - }, - "bordered-dark": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedDarkBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-dark", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-dark", - "background" - ] - }, - "border": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagBorderedDarkBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-dark", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-dark", - "border" - ] - }, - "text": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagBorderedDarkText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-dark", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-dark", - "text" - ] - } - }, - "bordered-light": { - "background": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagBorderedLightBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-light", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-light", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedLightBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-light", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-light", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedLightText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-light", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-light", - "text" - ] - } - }, - "bordered-danger": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedDangerBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-danger", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-danger", - "background" - ] - }, - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagBorderedDangerBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-danger", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-danger", - "border" - ] - }, - "text": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagBorderedDangerText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-danger", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-danger", - "text" - ] - } - } - }, - "focus": { - "gap": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/focus.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFocusGap", - "attributes": { - "category": "color", - "type": "focus", - "item": "gap" - }, - "path": [ - "color", - "focus", - "gap" - ] - }, - "border": { - "value": "#758992", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/focus.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.500.value}" - }, - "name": "ColorFocusBorder", - "attributes": { - "category": "color", - "type": "focus", - "item": "border" - }, - "path": [ - "color", - "focus", - "border" - ] - } - }, - "font": { - "primary-01": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFontPrimary01", - "attributes": { - "category": "color", - "type": "font", - "item": "primary-01" - }, - "path": [ - "color", - "font", - "primary-01" - ] - }, - "primary-02": { - "value": "#6a7081", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.primary-02.500.value}" - }, - "name": "ColorFontPrimary02", - "attributes": { - "category": "color", - "type": "font", - "item": "primary-02" - }, - "path": [ - "color", - "font", - "primary-02" - ] - }, - "darkest": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFontDarkest", - "attributes": { - "category": "color", - "type": "font", - "item": "darkest" - }, - "path": [ - "color", - "font", - "darkest" - ] - }, - "darker": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorFontDarker", - "attributes": { - "category": "color", - "type": "font", - "item": "darker" - }, - "path": [ - "color", - "font", - "darker" - ] - }, - "dark": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorFontDark", - "attributes": { - "category": "color", - "type": "font", - "item": "dark" - }, - "path": [ - "color", - "font", - "dark" - ] - }, - "light": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorFontLight", - "attributes": { - "category": "color", - "type": "font", - "item": "light" - }, - "path": [ - "color", - "font", - "light" - ] - }, - "lightest": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFontLightest", - "attributes": { - "category": "color", - "type": "font", - "item": "lightest" - }, - "path": [ - "color", - "font", - "lightest" - ] - }, - "info": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.info.600.value}" - }, - "name": "ColorFontInfo", - "attributes": { - "category": "color", - "type": "font", - "item": "info" - }, - "path": [ - "color", - "font", - "info" - ] - }, - "success": { - "value": "#188803", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.success.600.value}" - }, - "name": "ColorFontSuccess", - "attributes": { - "category": "color", - "type": "font", - "item": "success" - }, - "path": [ - "color", - "font", - "success" - ] - }, - "warning": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.warning.600.value}" - }, - "name": "ColorFontWarning", - "attributes": { - "category": "color", - "type": "font", - "item": "warning" - }, - "path": [ - "color", - "font", - "warning" - ] - }, - "danger": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorFontDanger", - "attributes": { - "category": "color", - "type": "font", - "item": "danger" - }, - "path": [ - "color", - "font", - "danger" - ] - } - }, - "heading": { - "underline": { - "default": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/heading.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorHeadingUnderlineDefault", - "attributes": { - "category": "color", - "type": "heading", - "item": "underline", - "subitem": "default" - }, - "path": [ - "color", - "heading", - "underline", - "default" - ] - }, - "lightest": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/heading.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorHeadingUnderlineLightest", - "attributes": { - "category": "color", - "type": "heading", - "item": "underline", - "subitem": "lightest" - }, - "path": [ - "color", - "heading", - "underline", - "lightest" - ] - } - } - }, - "hero": { - "cover": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/hero.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorHeroCoverBackground", - "attributes": { - "category": "color", - "type": "hero", - "item": "cover", - "subitem": "background" - }, - "path": [ - "color", - "hero", - "cover", - "background" - ] - } - } - }, - "input": { - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorInputText", - "attributes": { - "category": "color", - "type": "input", - "item": "text" - }, - "path": [ - "color", - "input", - "text" - ] - }, - "border": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorInputBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "border" - }, - "path": [ - "color", - "input", - "border" - ] - }, - "placeholder": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorInputPlaceholder", - "attributes": { - "category": "color", - "type": "input", - "item": "placeholder" - }, - "path": [ - "color", - "input", - "placeholder" - ] - }, - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorInputBackground", - "attributes": { - "category": "color", - "type": "input", - "item": "background" - }, - "path": [ - "color", - "input", - "background" - ] - }, - "disabled": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorInputDisabledBackground", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "input", - "disabled", - "background" - ] - }, - "border": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorInputDisabledBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "border" - }, - "path": [ - "color", - "input", - "disabled", - "border" - ] - }, - "icon": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorInputDisabledIcon", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "icon" - }, - "path": [ - "color", - "input", - "disabled", - "icon" - ] - }, - "label": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorInputDisabledLabel", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "label" - }, - "path": [ - "color", - "input", - "disabled", - "label" - ] - } - }, - "hover": { - "border": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorInputHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "hover", - "subitem": "border" - }, - "path": [ - "color", - "input", - "hover", - "border" - ] - } - }, - "focus": { - "border": { - "value": "#758992", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.500.value}" - }, - "name": "ColorInputFocusBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "focus", - "subitem": "border" - }, - "path": [ - "color", - "input", - "focus", - "border" - ] - } - }, - "valid": { - "border": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.success.500.value}" - }, - "name": "ColorInputValidBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "valid", - "subitem": "border" - }, - "path": [ - "color", - "input", - "valid", - "border" - ] - }, - "hover": { - "border": { - "value": "#035010", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.success.800.value}" - }, - "name": "ColorInputValidHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "valid", - "subitem": "hover", - "state": "border" - }, - "path": [ - "color", - "input", - "valid", - "hover", - "border" - ] - } - } - }, - "invalid": { - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorInputInvalidBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "invalid", - "subitem": "border" - }, - "path": [ - "color", - "input", - "invalid", - "border" - ] - }, - "hover": { - "border": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.danger.800.value}" - }, - "name": "ColorInputInvalidHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "invalid", - "subitem": "hover", - "state": "border" - }, - "path": [ - "color", - "input", - "invalid", - "hover", - "border" - ] - } - } - }, - "checked": { - "border": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorInputCheckedBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "border" - }, - "path": [ - "color", - "input", - "checked", - "border" - ] - }, - "background": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorInputCheckedBackground", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "background" - }, - "path": [ - "color", - "input", - "checked", - "background" - ] - }, - "icon": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorInputCheckedIcon", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "icon" - }, - "path": [ - "color", - "input", - "checked", - "icon" - ] - }, - "hover": { - "border": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorInputCheckedHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "hover", - "state": "border" - }, - "path": [ - "color", - "input", - "checked", - "hover", - "border" - ] - } - } - } - }, - "link": { - "dark": { - "base": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorLinkDarkBase", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "base" - }, - "path": [ - "color", - "link", - "dark", - "base" - ] - }, - "visited": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorLinkDarkVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "dark", - "visited" - ] - }, - "active": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorLinkDarkActive", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "active" - }, - "path": [ - "color", - "link", - "dark", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkDarkDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "dark", - "disabled" - ] - }, - "hover": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorLinkDarkHover", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "dark", - "hover" - ] - } - }, - "light": { - "base": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorLinkLightBase", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "base" - }, - "path": [ - "color", - "link", - "light", - "base" - ] - }, - "visited": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorLinkLightVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "light", - "visited" - ] - }, - "active": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorLinkLightActive", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "active" - }, - "path": [ - "color", - "link", - "light", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkLightDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "light", - "disabled" - ] - }, - "hover": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorLinkLightHover", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "light", - "hover" - ] - } - }, - "primary": { - "base": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorLinkPrimaryBase", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "base" - }, - "path": [ - "color", - "link", - "primary", - "base" - ] - }, - "visited": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorLinkPrimaryVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "primary", - "visited" - ] - }, - "active": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorLinkPrimaryActive", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "active" - }, - "path": [ - "color", - "link", - "primary", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkPrimaryDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "primary", - "disabled" - ] - }, - "hover": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorLinkPrimaryHover", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "primary", - "hover" - ] - } - }, - "primary-02": { - "base": { - "value": "#494f60", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorLinkPrimary02Base", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "base" - }, - "path": [ - "color", - "link", - "primary-02", - "base" - ] - }, - "visited": { - "value": "#343b4c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.700.value}" - }, - "name": "ColorLinkPrimary02Visited", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "primary-02", - "visited" - ] - }, - "active": { - "value": "#343b4c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.700.value}" - }, - "name": "ColorLinkPrimary02Active", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "active" - }, - "path": [ - "color", - "link", - "primary-02", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkPrimary02Disabled", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "primary-02", - "disabled" - ] - }, - "hover": { - "value": "#171b26", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorLinkPrimary02Hover", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "primary-02", - "hover" - ] - } - }, - "danger": { - "base": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/adeo/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorLinkDangerBase", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "base" - }, - "path": [ - "color", - "link", - "danger", - "base" - ] - }, - "visited": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.700.value}" - }, - "name": "ColorLinkDangerVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "danger", - "visited" - ] - }, - "active": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.700.value}" - }, - "name": "ColorLinkDangerActive", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "active" - }, - "path": [ - "color", - "link", - "danger", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkDangerDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "danger", - "disabled" - ] - }, - "hover": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.800.value}" - }, - "name": "ColorLinkDangerHover", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "danger", - "hover" - ] - } - } - }, - "listbox": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorListboxBackground", - "attributes": { - "category": "color", - "type": "listbox", - "item": "background" - }, - "path": [ - "color", - "listbox", - "background" - ] - }, - "border": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorListboxBorder", - "attributes": { - "category": "color", - "type": "listbox", - "item": "border" - }, - "path": [ - "color", - "listbox", - "border" - ] - }, - "tile": { - "border": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorListboxTileBorder", - "attributes": { - "category": "color", - "type": "listbox", - "item": "tile", - "subitem": "border" - }, - "path": [ - "color", - "listbox", - "tile", - "border" - ] - }, - "shadow": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorListboxTileShadow", - "attributes": { - "category": "color", - "type": "listbox", - "item": "tile", - "subitem": "shadow" - }, - "path": [ - "color", - "listbox", - "tile", - "shadow" - ] - }, - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorListboxTileHoverBackground", - "attributes": { - "category": "color", - "type": "listbox", - "item": "tile", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "listbox", - "tile", - "hover", - "background" - ] - } - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorListboxDisabledBackground", - "attributes": { - "category": "color", - "type": "listbox", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "listbox", - "disabled", - "background" - ] - } - } - }, - "notification": { - "font": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorNotificationFont", - "attributes": { - "category": "color", - "type": "notification", - "item": "font" - }, - "path": [ - "color", - "notification", - "font" - ] - }, - "information": { - "background": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.info.100.value}" - }, - "name": "ColorNotificationInformationBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "information", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "information", - "background" - ] - }, - "border": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.info.500.value}" - }, - "name": "ColorNotificationInformationBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "information", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "information", - "border" - ] - }, - "icon": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.info.600.value}" - }, - "name": "ColorNotificationInformationIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "information", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "information", - "icon" - ] - } - }, - "success": { - "background": { - "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.success.100.value}" - }, - "name": "ColorNotificationSuccessBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "success", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "success", - "background" - ] - }, - "border": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.success.500.value}" - }, - "name": "ColorNotificationSuccessBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "success", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "success", - "border" - ] - }, - "icon": { - "value": "#188803", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.success.600.value}" - }, - "name": "ColorNotificationSuccessIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "success", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "success", - "icon" - ] - } - }, - "warning": { - "background": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.warning.100.value}" - }, - "name": "ColorNotificationWarningBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "warning", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "warning", - "background" - ] - }, - "border": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.warning.500.value}" - }, - "name": "ColorNotificationWarningBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "warning", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "warning", - "border" - ] - }, - "icon": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.warning.600.value}" - }, - "name": "ColorNotificationWarningIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "warning", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "warning", - "icon" - ] - } - }, - "danger": { - "background": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.danger.100.value}" - }, - "name": "ColorNotificationDangerBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "danger", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "danger", - "background" - ] - }, - "border": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.danger.500.value}" - }, - "name": "ColorNotificationDangerBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "danger", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "danger", - "border" - ] - }, - "icon": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorNotificationDangerIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "danger", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "danger", - "icon" - ] - } - } - }, - "option-button": { - "label": { - "shadow": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorOptionButtonLabelShadow", - "attributes": { - "category": "color", - "type": "option-button", - "item": "label", - "subitem": "shadow" - }, - "path": [ - "color", - "option-button", - "label", - "shadow" - ] - } - }, - "hover": { - "label": { - "shadow": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorOptionButtonHoverLabelShadow", - "attributes": { - "category": "color", - "type": "option-button", - "item": "hover", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-button", - "hover", - "label", - "shadow" - ] - } - } - }, - "checked": { - "label": { - "border": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorOptionButtonCheckedLabelBorder", - "attributes": { - "category": "color", - "type": "option-button", - "item": "checked", - "subitem": "label", - "state": "border" - }, - "path": [ - "color", - "option-button", - "checked", - "label", - "border" - ] - }, - "shadow": { - "value": "#d9f0f3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorOptionButtonCheckedLabelShadow", - "attributes": { - "category": "color", - "type": "option-button", - "item": "checked", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-button", - "checked", - "label", - "shadow" - ] - } - } - }, - "disabled": { - "label": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorOptionButtonDisabledLabelBackground", - "attributes": { - "category": "color", - "type": "option-button", - "item": "disabled", - "subitem": "label", - "state": "background" - }, - "path": [ - "color", - "option-button", - "disabled", - "label", - "background" - ] - } - } - } - }, - "option-card": { - "label": { - "shadow": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorOptionCardLabelShadow", - "attributes": { - "category": "color", - "type": "option-card", - "item": "label", - "subitem": "shadow" - }, - "path": [ - "color", - "option-card", - "label", - "shadow" - ] - } - }, - "hover": { - "label": { - "shadow": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorOptionCardHoverLabelShadow", - "attributes": { - "category": "color", - "type": "option-card", - "item": "hover", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-card", - "hover", - "label", - "shadow" - ] - } - } - }, - "checked": { - "label": { - "border": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorOptionCardCheckedLabelBorder", - "attributes": { - "category": "color", - "type": "option-card", - "item": "checked", - "subitem": "label", - "state": "border" - }, - "path": [ - "color", - "option-card", - "checked", - "label", - "border" - ] - }, - "shadow": { - "value": "#d9f0f3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorOptionCardCheckedLabelShadow", - "attributes": { - "category": "color", - "type": "option-card", - "item": "checked", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-card", - "checked", - "label", - "shadow" - ] - } - } - }, - "disabled": { - "content": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorOptionCardDisabledContent", - "attributes": { - "category": "color", - "type": "option-card", - "item": "disabled", - "subitem": "content" - }, - "path": [ - "color", - "option-card", - "disabled", - "content" - ] - }, - "label": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorOptionCardDisabledLabel", - "attributes": { - "category": "color", - "type": "option-card", - "item": "disabled", - "subitem": "label" - }, - "path": [ - "color", - "option-card", - "disabled", - "label" - ] - } - } - }, - "overlay": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/overlay.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorOverlayBackground", - "attributes": { - "category": "color", - "type": "overlay", - "item": "background" - }, - "path": [ - "color", - "overlay", - "background" - ] - }, - "loader": { - "background": { - "value": "#082435", - "filePath": "packages/tokens/src/tokens/adeo/color/overlay.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.900.value}" - }, - "name": "ColorOverlayLoaderBackground", - "attributes": { - "category": "color", - "type": "overlay", - "item": "loader", - "subitem": "background" - }, - "path": [ - "color", - "overlay", - "loader", - "background" - ] - } - } - }, - "password-input": { - "button": { - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/password-input.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorPasswordInputButtonHoverBackground", - "attributes": { - "category": "color", - "type": "password-input", - "item": "button", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "password-input", - "button", - "hover", - "background" - ] - } - } - } - }, - "phone-number": { - "button": { - "border": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorPhoneNumberButtonBorder", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "button", - "subitem": "border" - }, - "path": [ - "color", - "phone-number", - "button", - "border" - ] - } - }, - "list": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorPhoneNumberListBackground", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "list", - "subitem": "background" - }, - "path": [ - "color", - "phone-number", - "list", - "background" - ] - } - }, - "item": { - "border": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorPhoneNumberItemBorder", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "item", - "subitem": "border" - }, - "path": [ - "color", - "phone-number", - "item", - "border" - ] - }, - "focus": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorPhoneNumberItemFocusBackground", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "item", - "subitem": "focus", - "state": "background" - }, - "path": [ - "color", - "phone-number", - "item", - "focus", - "background" - ] - } - } - } - }, - "progress": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorProgressBackground", - "attributes": { - "category": "color", - "type": "progress", - "item": "background" - }, - "path": [ - "color", - "progress", - "background" - ] - }, - "indicator": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.info.600.value}" - }, - "name": "ColorProgressIndicator", - "attributes": { - "category": "color", - "type": "progress", - "item": "indicator" - }, - "path": [ - "color", - "progress", - "indicator" - ] - }, - "percentage": { - "default": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorProgressPercentageDefault", - "attributes": { - "category": "color", - "type": "progress", - "item": "percentage", - "subitem": "default" - }, - "path": [ - "color", - "progress", - "percentage", - "default" - ] - }, - "half": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorProgressPercentageHalf", - "attributes": { - "category": "color", - "type": "progress", - "item": "percentage", - "subitem": "half" - }, - "path": [ - "color", - "progress", - "percentage", - "half" - ] - } - }, - "branded": { - "indicator": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorProgressBrandedIndicator", - "attributes": { - "category": "color", - "type": "progress", - "item": "branded", - "subitem": "indicator" - }, - "path": [ - "color", - "progress", - "branded", - "indicator" - ] - } - } - }, - "star": { - "empty": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorStarEmpty", - "attributes": { - "category": "color", - "type": "star", - "item": "empty" - }, - "path": [ - "color", - "star", - "empty" - ] - }, - "focus": { - "value": "#758992", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.500.value}" - }, - "name": "ColorStarFocus", - "attributes": { - "category": "color", - "type": "star", - "item": "focus" - }, - "path": [ - "color", - "star", - "focus" - ] - }, - "full": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "#EA7315" - }, - "name": "ColorStarFull", - "attributes": { - "category": "color", - "type": "star", - "item": "full" - }, - "path": [ - "color", - "star", - "full" - ] - }, - "hover": { - "value": "#f4b27e", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "{color.secondary-orange.300.value}" - }, - "name": "ColorStarHover", - "attributes": { - "category": "color", - "type": "star", - "item": "hover" - }, - "path": [ - "color", - "star", - "hover" - ] - } - }, - "stepper": { - "item": { - "background": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorStepperItemBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "item", - "subitem": "background" - }, - "path": [ - "color", - "stepper", - "item", - "background" - ] - }, - "current": { - "background": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperItemCurrentBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "item", - "subitem": "current", - "state": "background" - }, - "path": [ - "color", - "stepper", - "item", - "current", - "background" - ] - } - } - }, - "link": { - "hover": { - "text": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperLinkHoverText", - "attributes": { - "category": "color", - "type": "stepper", - "item": "link", - "subitem": "hover", - "state": "text" - }, - "path": [ - "color", - "stepper", - "link", - "hover", - "text" - ] - } - } - }, - "indicator": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorStepperIndicatorBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "background" - }, - "path": [ - "color", - "stepper", - "indicator", - "background" - ] - }, - "border": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorStepperIndicatorBorder", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "border" - }, - "path": [ - "color", - "stepper", - "indicator", - "border" - ] - }, - "current": { - "background": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperIndicatorCurrentBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "current", - "state": "background" - }, - "path": [ - "color", - "stepper", - "indicator", - "current", - "background" - ] - }, - "border": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperIndicatorCurrentBorder", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "current", - "state": "border" - }, - "path": [ - "color", - "stepper", - "indicator", - "current", - "border" - ] - } - } - }, - "icon": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperIcon", - "attributes": { - "category": "color", - "type": "stepper", - "item": "icon" - }, - "path": [ - "color", - "stepper", - "icon" - ] - }, - "title": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperTitle", - "attributes": { - "category": "color", - "type": "stepper", - "item": "title" - }, - "path": [ - "color", - "stepper", - "title" - ] - } - }, - "tabs": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTabsBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "background" - }, - "path": [ - "color", - "tabs", - "background" - ] - }, - "shadow": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorTabsShadow", - "attributes": { - "category": "color", - "type": "tabs", - "item": "shadow" - }, - "path": [ - "color", - "tabs", - "shadow" - ] - }, - "default": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.font.light.value}" - }, - "name": "ColorTabsDefault", - "attributes": { - "category": "color", - "type": "tabs", - "item": "default" - }, - "path": [ - "color", - "tabs", - "default" - ] - }, - "element": { - "background": { - "value": "#eeedea", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.secondary-sandgrey.100.value}" - }, - "name": "ColorTabsElementBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "element", - "subitem": "background" - }, - "path": [ - "color", - "tabs", - "element", - "background" - ] - } - }, - "hover": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTabsHover", - "attributes": { - "category": "color", - "type": "tabs", - "item": "hover" - }, - "path": [ - "color", - "tabs", - "hover" - ] - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTabsDisabledBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "tabs", - "disabled", - "background" - ] - } - }, - "active": { - "background": { - "value": "#dddcd5", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.secondary-sandgrey.200.value}" - }, - "name": "ColorTabsActiveBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "active", - "subitem": "background" - }, - "path": [ - "color", - "tabs", - "active", - "background" - ] - }, - "text": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTabsActiveText", - "attributes": { - "category": "color", - "type": "tabs", - "item": "active", - "subitem": "text" - }, - "path": [ - "color", - "tabs", - "active", - "text" - ] - } - }, - "selected": { - "border": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorTabsSelectedBorder", - "attributes": { - "category": "color", - "type": "tabs", - "item": "selected", - "subitem": "border" - }, - "path": [ - "color", - "tabs", - "selected", - "border" - ] - }, - "text": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorTabsSelectedText", - "attributes": { - "category": "color", - "type": "tabs", - "item": "selected", - "subitem": "text" - }, - "path": [ - "color", - "tabs", - "selected", - "text" - ] - } - }, - "active-disabled": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/adeo/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorTabsActiveDisabled", - "attributes": { - "category": "color", - "type": "tabs", - "item": "active-disabled" - }, - "path": [ - "color", - "tabs", - "active-disabled" - ] - } - }, - "tag": { - "text": { - "light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagTextLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "text", - "light", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagTextLightBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "light", - "state": "border" - }, - "path": [ - "color", - "tag", - "text", - "light", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagTextLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "text", - "light", - "text" - ] - } - }, - "dark": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagTextDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "text", - "dark", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagTextDarkBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "dark", - "state": "border" - }, - "path": [ - "color", - "tag", - "text", - "dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagTextDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "text", - "dark", - "text" - ] - } - } - }, - "link": { - "light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagLinkLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "link", - "light", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagLinkLightBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "border" - }, - "path": [ - "color", - "tag", - "link", - "light", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagLinkLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "link", - "light", - "text" - ] - }, - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorTagLinkLightHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "hover" - }, - "path": [ - "color", - "tag", - "link", - "light", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTagLinkLightActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "link", - "light", - "active", - "background" - ] - } - } - }, - "dark": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagLinkDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagLinkDarkBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "border" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagLinkDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "text" - ] - }, - "hover": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorTagLinkDarkHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "hover" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTagLinkDarkActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "active", - "background" - ] - } - } - } - }, - "selectable": { - "light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagSelectableLightBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "border" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "text" - ] - }, - "hover": { - "background": { - "value": "#48bac4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.300.value}" - }, - "name": "ColorTagSelectableLightHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "hover" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTagSelectableLightActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "active", - "background" - ] - }, - "border": { - "value": "#004e57", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTagSelectableLightActiveBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "active", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableLightActiveText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "active", - "text" - ] - } - }, - "disabled": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorTagSelectableLightDisabledBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "disabled", - "background" - ] - }, - "text": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagSelectableLightDisabledText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "disabled", - "text" - ] - } - }, - "selected": { - "background": { - "value": "#007f8c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorTagSelectableLightSelectedBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "selected", - "background" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableLightSelectedText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "selected", - "text" - ] - }, - "hover": { - "background": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorTagSelectableLightSelectedHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "selected", - "hover", - "background" - ] - } - } - } - }, - "dark": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableDarkBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "border" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "text" - ] - }, - "hover": { - "background": { - "value": "#006974", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorTagSelectableDarkHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "hover" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorTagSelectableDarkActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "active", - "background" - ] - }, - "border": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorTagSelectableDarkActiveBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "active", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableDarkActiveText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "active", - "text" - ] - } - }, - "selected": { - "background": { - "value": "#009eac", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.400.value}" - }, - "name": "ColorTagSelectableDarkSelectedBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "background" - ] - }, - "border": { - "value": "#009eac", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.400.value}" - }, - "name": "ColorTagSelectableDarkSelectedBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableDarkSelectedText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "text" - ] - }, - "hover": { - "background": { - "value": "#48bac4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.300.value}" - }, - "name": "ColorTagSelectableDarkSelectedHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "hover", - "background" - ] - } - } - }, - "disabled": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTagSelectableDarkDisabledBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "disabled", - "background" - ] - }, - "text": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagSelectableDarkDisabledText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "disabled", - "text" - ] - } - } - } - }, - "removable": { - "light": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorTagRemovableLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "background" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagRemovableLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "text" - ] - }, - "icon": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTagRemovableLightIcon", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "icon" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "icon" - ] - }, - "hover": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTagRemovableLightHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "hover" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorTagRemovableLightActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "active", - "background" - ] - } - } - }, - "dark": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTagRemovableDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "background" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagRemovableDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "text" - ] - }, - "icon": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagRemovableDarkIcon", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "icon" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "icon" - ] - }, - "hover": { - "background": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorTagRemovableDarkHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "hover" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorTagRemovableDarkActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "active", - "background" - ] - } - } - } - } - }, - "toggle": { - "label": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorToggleLabel", - "attributes": { - "category": "color", - "type": "toggle", - "item": "label" - }, - "path": [ - "color", - "toggle", - "label" - ] - }, - "off": { - "background": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorToggleOffBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "off", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "off", - "background" - ] - }, - "circle": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorToggleOffCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "off", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "off", - "circle" - ] - } - }, - "on": { - "background": { - "value": "#00919f", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorToggleOnBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "on", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "on", - "background" - ] - }, - "circle": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorToggleOnCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "on", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "on", - "circle" - ] - } - }, - "hover": { - "circle": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorToggleHoverCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "hover", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "hover", - "circle" - ] - } - }, - "disabled": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorToggleDisabledBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "disabled", - "background" - ] - }, - "circle": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorToggleDisabledCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "disabled", - "circle" - ] - }, - "label": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorToggleDisabledLabel", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled", - "subitem": "label" - }, - "path": [ - "color", - "toggle", - "disabled", - "label" - ] - } - }, - "disabled-checked": { - "background": { - "value": "#91d5db", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorToggleDisabledCheckedBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled-checked", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "disabled-checked", - "background" - ] - }, - "circle": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorToggleDisabledCheckedCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled-checked", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "disabled-checked", - "circle" - ] - } - } - }, - "tooltip": { - "background": { - "value": "#5b737d", - "filePath": "packages/tokens/src/tokens/adeo/color/tooltip.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.600.value}" - }, - "name": "ColorTooltipBackground", - "attributes": { - "category": "color", - "type": "tooltip", - "item": "background" - }, - "path": [ - "color", - "tooltip", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/adeo/color/tooltip.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTooltipBorder", - "attributes": { - "category": "color", - "type": "tooltip", - "item": "border" - }, - "path": [ - "color", - "tooltip", - "border" - ] - } - }, - "secondary-sandgrey": { - "100": { - "value": "#eeedea", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#EEEDEA" - }, - "name": "ColorSecondarySandgrey100", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "100" - }, - "path": [ - "color", - "secondary-sandgrey", - "100" - ] - }, - "200": { - "value": "#dddcd5", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#DDDCD5" - }, - "name": "ColorSecondarySandgrey200", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "200" - }, - "path": [ - "color", - "secondary-sandgrey", - "200" - ] - }, - "300": { - "value": "#c2c1ba", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#C2C1BA" - }, - "name": "ColorSecondarySandgrey300", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "300" - }, - "path": [ - "color", - "secondary-sandgrey", - "300" - ] - }, - "400": { - "value": "#a7a6a0", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#A7A6A0" - }, - "name": "ColorSecondarySandgrey400", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "400" - }, - "path": [ - "color", - "secondary-sandgrey", - "400" - ] - }, - "500": { - "value": "#8c8b85", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#8C8B85" - }, - "name": "ColorSecondarySandgrey500", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "500" - }, - "path": [ - "color", - "secondary-sandgrey", - "500" - ] - }, - "600": { - "value": "#71706b", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#71706B" - }, - "name": "ColorSecondarySandgrey600", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "600" - }, - "path": [ - "color", - "secondary-sandgrey", - "600" - ] - }, - "700": { - "value": "#555550", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#555550" - }, - "name": "ColorSecondarySandgrey700", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "700" - }, - "path": [ - "color", - "secondary-sandgrey", - "700" - ] - }, - "800": { - "value": "#3a3936", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#3A3936" - }, - "name": "ColorSecondarySandgrey800", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "800" - }, - "path": [ - "color", - "secondary-sandgrey", - "800" - ] - }, - "900": { - "value": "#1e1e1c", - "filePath": "packages/tokens/src/tokens/adeo/color/base.json", - "isSource": true, - "original": { - "value": "#1E1E1C" - }, - "name": "ColorSecondarySandgrey900", - "attributes": { - "category": "color", - "type": "secondary-sandgrey", - "item": "900" - }, - "path": [ - "color", - "secondary-sandgrey", - "900" - ] - } - } - }, - "font": { - "family": { - "value": "Roboto", - "filePath": "packages/tokens/src/tokens/adeo/font.json", - "isSource": true, - "original": { - "value": "Roboto" - }, - "name": "FontFamily", - "attributes": { - "category": "font", - "type": "family" - }, - "path": [ - "font", - "family" - ] - }, - "weight": { - "light": { - "value": 300, - "filePath": "packages/tokens/src/tokens/adeo/font.json", - "isSource": true, - "original": { - "value": 300 - }, - "name": "FontWeightLight", - "attributes": { - "category": "font", - "type": "weight", - "item": "light" - }, - "path": [ - "font", - "weight", - "light" - ] - }, - "regular": { - "value": 400, - "filePath": "packages/tokens/src/tokens/adeo/font.json", - "isSource": true, - "original": { - "value": 400 - }, - "name": "FontWeightRegular", - "attributes": { - "category": "font", - "type": "weight", - "item": "regular" - }, - "path": [ - "font", - "weight", - "regular" - ] - }, - "semi-bold": { - "value": 500, - "filePath": "packages/tokens/src/tokens/adeo/font.json", - "isSource": true, - "original": { - "value": 500 - }, - "name": "FontWeightSemiBold", - "attributes": { - "category": "font", - "type": "weight", - "item": "semi-bold" - }, - "path": [ - "font", - "weight", - "semi-bold" - ] - } - } - }, - "preset": { - "value": "adeo", - "filePath": "packages/tokens/src/tokens/adeo/preset.json", - "isSource": true, - "original": { - "value": "adeo" - }, - "name": "Preset", - "attributes": { - "category": "preset" - }, - "path": [ - "preset" - ] - }, - "radius": { - "s": { - "value": 2, - "filePath": "packages/tokens/src/tokens/leroymerlin/radius/base.json", - "isSource": true, - "original": { - "value": 2 - }, - "name": "RadiusS", - "attributes": { - "category": "radius", - "type": "s" - }, - "path": [ - "radius", - "s" - ] - }, - "m": { - "value": 4, - "filePath": "packages/tokens/src/tokens/leroymerlin/radius/base.json", - "isSource": true, - "original": { - "value": 4 - }, - "name": "RadiusM", - "attributes": { - "category": "radius", - "type": "m" - }, - "path": [ - "radius", - "m" - ] - }, - "l": { - "value": 6, - "filePath": "packages/tokens/src/tokens/leroymerlin/radius/base.json", - "isSource": true, - "original": { - "value": 6 - }, - "name": "RadiusL", - "attributes": { - "category": "radius", - "type": "l" - }, - "path": [ - "radius", - "l" - ] - } - }, - "shadow": { - "s": { - "x": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowSX", - "attributes": { - "category": "shadow", - "type": "s", - "item": "x" - }, - "path": [ - "shadow", - "s", - "x" - ] - }, - "y": { - "value": "1px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "1px" - }, - "name": "ShadowSY", - "attributes": { - "category": "shadow", - "type": "s", - "item": "y" - }, - "path": [ - "shadow", - "s", - "y" - ] - }, - "blur": { - "value": "5px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "5px" - }, - "name": "ShadowSBlur", - "attributes": { - "category": "shadow", - "type": "s", - "item": "blur" - }, - "path": [ - "shadow", - "s", - "blur" - ] - }, - "spread": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowSSpread", - "attributes": { - "category": "shadow", - "type": "s", - "item": "spread" - }, - "path": [ - "shadow", - "s", - "spread" - ] - }, - "opacity": { - "value": "0.2", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0.2" - }, - "name": "ShadowSOpacity", - "attributes": { - "category": "shadow", - "type": "s", - "item": "opacity" - }, - "path": [ - "shadow", - "s", - "opacity" - ] - } - }, - "m": { - "x": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowMX", - "attributes": { - "category": "shadow", - "type": "m", - "item": "x" - }, - "path": [ - "shadow", - "m", - "x" - ] - }, - "y": { - "value": "2px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "2px" - }, - "name": "ShadowMY", - "attributes": { - "category": "shadow", - "type": "m", - "item": "y" - }, - "path": [ - "shadow", - "m", - "y" - ] - }, - "blur": { - "value": "10px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "10px" - }, - "name": "ShadowMBlur", - "attributes": { - "category": "shadow", - "type": "m", - "item": "blur" - }, - "path": [ - "shadow", - "m", - "blur" - ] - }, - "spread": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowMSpread", - "attributes": { - "category": "shadow", - "type": "m", - "item": "spread" - }, - "path": [ - "shadow", - "m", - "spread" - ] - }, - "opacity": { - "value": "0.2", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0.2" - }, - "name": "ShadowMOpacity", - "attributes": { - "category": "shadow", - "type": "m", - "item": "opacity" - }, - "path": [ - "shadow", - "m", - "opacity" - ] - } - }, - "l": { - "x": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowLX", - "attributes": { - "category": "shadow", - "type": "l", - "item": "x" - }, - "path": [ - "shadow", - "l", - "x" - ] - }, - "y": { - "value": "4px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "4px" - }, - "name": "ShadowLY", - "attributes": { - "category": "shadow", - "type": "l", - "item": "y" - }, - "path": [ - "shadow", - "l", - "y" - ] - }, - "blur": { - "value": "20px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "20px" - }, - "name": "ShadowLBlur", - "attributes": { - "category": "shadow", - "type": "l", - "item": "blur" - }, - "path": [ - "shadow", - "l", - "blur" - ] - }, - "spread": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowLSpread", - "attributes": { - "category": "shadow", - "type": "l", - "item": "spread" - }, - "path": [ - "shadow", - "l", - "spread" - ] - }, - "opacity": { - "value": "0.2", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0.2" - }, - "name": "ShadowLOpacity", - "attributes": { - "category": "shadow", - "type": "l", - "item": "opacity" - }, - "path": [ - "shadow", - "l", - "opacity" - ] - } - } - }, - "magic-unit": { - "value": 1, - "filePath": "packages/tokens/src/tokens/leroymerlin/size/base.json", - "isSource": true, - "original": { - "value": 1 - }, - "name": "MagicUnit", - "attributes": { - "category": "magic-unit" - }, - "path": [ - "magic-unit" - ] - }, - "local-rem-value": { - "value": 16, - "filePath": "packages/tokens/src/tokens/leroymerlin/size/base.json", - "isSource": true, - "original": { - "value": 16 - }, - "name": "LocalRemValue", - "attributes": { - "category": "local-rem-value" - }, - "path": [ - "local-rem-value" - ] - }, - "size": { - "font": { - "10": { - "value": "2.5625rem", - "comment": "41px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.5625, - "comment": "41px" - }, - "name": "SizeFont10", - "attributes": { - "category": "size", - "type": "font", - "item": "10" - }, - "path": [ - "size", - "font", - "10" - ] - }, - "11": { - "value": "3.0625rem", - "comment": "49px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.0625, - "comment": "49px" - }, - "name": "SizeFont11", - "attributes": { - "category": "size", - "type": "font", - "item": "11" - }, - "path": [ - "size", - "font", - "11" - ] - }, - "12": { - "value": "3.6875rem", - "comment": "59px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.6875, - "comment": "59px" - }, - "name": "SizeFont12", - "attributes": { - "category": "size", - "type": "font", - "item": "12" - }, - "path": [ - "size", - "font", - "12" - ] - }, - "01": { - "value": "0.6815rem", - "comment": "11px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.6815, - "comment": "11px" - }, - "name": "SizeFont01", - "attributes": { - "category": "size", - "type": "font", - "item": "01" - }, - "path": [ - "size", - "font", - "01" - ] - }, - "02": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeFont02", - "attributes": { - "category": "size", - "type": "font", - "item": "02" - }, - "path": [ - "size", - "font", - "02" - ] - }, - "03": { - "value": "0.8125rem", - "comment": "13px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.8125, - "comment": "13px" - }, - "name": "SizeFont03", - "attributes": { - "category": "size", - "type": "font", - "item": "03" - }, - "path": [ - "size", - "font", - "03" - ] - }, - "04": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeFont04", - "attributes": { - "category": "size", - "type": "font", - "item": "04" - }, - "path": [ - "size", - "font", - "04" - ] - }, - "05": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeFont05", - "attributes": { - "category": "size", - "type": "font", - "item": "05" - }, - "path": [ - "size", - "font", - "05" - ] - }, - "06": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeFont06", - "attributes": { - "category": "size", - "type": "font", - "item": "06" - }, - "path": [ - "size", - "font", - "06" - ] - }, - "07": { - "value": "1.4375rem", - "comment": "23px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.4375, - "comment": "23px" - }, - "name": "SizeFont07", - "attributes": { - "category": "size", - "type": "font", - "item": "07" - }, - "path": [ - "size", - "font", - "07" - ] - }, - "08": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeFont08", - "attributes": { - "category": "size", - "type": "font", - "item": "08" - }, - "path": [ - "size", - "font", - "08" - ] - }, - "09": { - "value": "2.125rem", - "comment": "34px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.125, - "comment": "34px" - }, - "name": "SizeFont09", - "attributes": { - "category": "size", - "type": "font", - "item": "09" - }, - "path": [ - "size", - "font", - "09" - ] - } - }, - "line": { - "10": { - "xs": { - "value": "2.5rem", - "comment": "40px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.5, - "comment": "40px" - }, - "name": "SizeLine10Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "10", - "xs" - ] - }, - "s": { - "value": "3rem", - "comment": "48px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3, - "comment": "48px" - }, - "name": "SizeLine10S", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "s" - }, - "path": [ - "size", - "line", - "10", - "s" - ] - }, - "m": { - "value": "3.5rem", - "comment": "56px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.5, - "comment": "56px" - }, - "name": "SizeLine10M", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "m" - }, - "path": [ - "size", - "line", - "10", - "m" - ] - }, - "l": { - "value": "3.75rem", - "comment": "60px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.75, - "comment": "60px" - }, - "name": "SizeLine10L", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "l" - }, - "path": [ - "size", - "line", - "10", - "l" - ] - } - }, - "11": { - "xs": { - "value": "3rem", - "comment": "48px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3, - "comment": "48px" - }, - "name": "SizeLine11Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "11", - "xs" - ] - }, - "s": { - "value": "3.5rem", - "comment": "56px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.5, - "comment": "56px" - }, - "name": "SizeLine11S", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "s" - }, - "path": [ - "size", - "line", - "11", - "s" - ] - }, - "m": { - "value": "4.25rem", - "comment": "68px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 4.25, - "comment": "68px" - }, - "name": "SizeLine11M", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "m" - }, - "path": [ - "size", - "line", - "11", - "m" - ] - }, - "l": { - "value": "4.5rem", - "comment": "72px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 4.5, - "comment": "72px" - }, - "name": "SizeLine11L", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "l" - }, - "path": [ - "size", - "line", - "11", - "l" - ] - } - }, - "12": { - "xs": { - "value": "3.75rem", - "comment": "60px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.75, - "comment": "60px" - }, - "name": "SizeLine12Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "12", - "xs" - ] - }, - "s": { - "value": "4.25rem", - "comment": "68px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 4.25, - "comment": "68px" - }, - "name": "SizeLine12S", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "s" - }, - "path": [ - "size", - "line", - "12", - "s" - ] - }, - "m": { - "value": "5rem", - "comment": "80px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 5, - "comment": "80px" - }, - "name": "SizeLine12M", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "m" - }, - "path": [ - "size", - "line", - "12", - "m" - ] - }, - "l": { - "value": "5.5rem", - "comment": "88px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 5.5, - "comment": "88px" - }, - "name": "SizeLine12L", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "l" - }, - "path": [ - "size", - "line", - "12", - "l" - ] - } - }, - "01": { - "xs": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeLine01Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "01", - "xs" - ] - }, - "s": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeLine01S", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "s" - }, - "path": [ - "size", - "line", - "01", - "s" - ] - }, - "m": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine01M", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "m" - }, - "path": [ - "size", - "line", - "01", - "m" - ] - }, - "l": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine01L", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "l" - }, - "path": [ - "size", - "line", - "01", - "l" - ] - } - }, - "02": { - "xs": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeLine02Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "02", - "xs" - ] - }, - "s": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine02S", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "s" - }, - "path": [ - "size", - "line", - "02", - "s" - ] - }, - "m": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine02M", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "m" - }, - "path": [ - "size", - "line", - "02", - "m" - ] - }, - "l": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine02L", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "l" - }, - "path": [ - "size", - "line", - "02", - "l" - ] - } - }, - "03": { - "xs": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine03Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "03", - "xs" - ] - }, - "s": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine03S", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "s" - }, - "path": [ - "size", - "line", - "03", - "s" - ] - }, - "m": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine03M", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "m" - }, - "path": [ - "size", - "line", - "03", - "m" - ] - }, - "l": { - "value": "1.25rem", - "comment": "20px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.25, - "comment": "20px" - }, - "name": "SizeLine03L", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "l" - }, - "path": [ - "size", - "line", - "03", - "l" - ] - } - }, - "04": { - "xs": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine04Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "04", - "xs" - ] - }, - "s": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine04S", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "s" - }, - "path": [ - "size", - "line", - "04", - "s" - ] - }, - "m": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine04M", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "m" - }, - "path": [ - "size", - "line", - "04", - "m" - ] - }, - "l": { - "value": "1.375rem", - "comment": "22px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.375, - "comment": "22px" - }, - "name": "SizeLine04L", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "l" - }, - "path": [ - "size", - "line", - "04", - "l" - ] - } - }, - "05": { - "xs": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine05Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "05", - "xs" - ] - }, - "s": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine05S", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "s" - }, - "path": [ - "size", - "line", - "05", - "s" - ] - }, - "m": { - "value": "1.375rem", - "comment": "22px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.375, - "comment": "22px" - }, - "name": "SizeLine05M", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "m" - }, - "path": [ - "size", - "line", - "05", - "m" - ] - }, - "l": { - "value": "1.5rem", - "comment": "24px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.5, - "comment": "24px" - }, - "name": "SizeLine05L", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "l" - }, - "path": [ - "size", - "line", - "05", - "l" - ] - } - }, - "06": { - "xs": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine06Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "06", - "xs" - ] - }, - "s": { - "value": "1.25rem", - "comment": "20px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.25, - "comment": "20px" - }, - "name": "SizeLine06S", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "s" - }, - "path": [ - "size", - "line", - "06", - "s" - ] - }, - "m": { - "value": "1.5rem", - "comment": "24px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.5, - "comment": "24px" - }, - "name": "SizeLine06M", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "m" - }, - "path": [ - "size", - "line", - "06", - "m" - ] - }, - "l": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeLine06L", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "l" - }, - "path": [ - "size", - "line", - "06", - "l" - ] - } - }, - "07": { - "xs": { - "value": "1.5rem", - "comment": "24px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.5, - "comment": "24px" - }, - "name": "SizeLine07Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "07", - "xs" - ] - }, - "s": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeLine07S", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "s" - }, - "path": [ - "size", - "line", - "07", - "s" - ] - }, - "m": { - "value": "2rem", - "comment": "32px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2, - "comment": "32px" - }, - "name": "SizeLine07M", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "m" - }, - "path": [ - "size", - "line", - "07", - "m" - ] - }, - "l": { - "value": "2.25rem", - "comment": "36px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.25, - "comment": "36px" - }, - "name": "SizeLine07L", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "l" - }, - "path": [ - "size", - "line", - "07", - "l" - ] - } - }, - "08": { - "xs": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeLine08Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "08", - "xs" - ] - }, - "s": { - "value": "2rem", - "comment": "32px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2, - "comment": "32px" - }, - "name": "SizeLine08S", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "s" - }, - "path": [ - "size", - "line", - "08", - "s" - ] - }, - "m": { - "value": "2.25rem", - "comment": "36px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.25, - "comment": "36px" - }, - "name": "SizeLine08M", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "m" - }, - "path": [ - "size", - "line", - "08", - "m" - ] - }, - "l": { - "value": "2.75rem", - "comment": "44px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.75, - "comment": "44px" - }, - "name": "SizeLine08L", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "l" - }, - "path": [ - "size", - "line", - "08", - "l" - ] - } - }, - "09": { - "xs": { - "value": "2.25rem", - "comment": "36px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.25, - "comment": "36px" - }, - "name": "SizeLine09Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "09", - "xs" - ] - }, - "s": { - "value": "2.5rem", - "comment": "40px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.5, - "comment": "40px" - }, - "name": "SizeLine09S", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "s" - }, - "path": [ - "size", - "line", - "09", - "s" - ] - }, - "m": { - "value": "2.75rem", - "comment": "44px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.75, - "comment": "44px" - }, - "name": "SizeLine09M", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "m" - }, - "path": [ - "size", - "line", - "09", - "m" - ] - }, - "l": { - "value": "3.25rem", - "comment": "52px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.25, - "comment": "52px" - }, - "name": "SizeLine09L", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "l" - }, - "path": [ - "size", - "line", - "09", - "l" - ] - } - } - }, - "gutter": { - "screen": { - "s": { - "value": "1rem", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/grid.json", - "isSource": true, - "original": { - "value": 1 - }, - "name": "SizeGutterScreenS", - "attributes": { - "category": "size", - "type": "gutter", - "item": "screen", - "subitem": "s" - }, - "path": [ - "size", - "gutter", - "screen", - "s" - ] - }, - "m": { - "value": "2rem", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/grid.json", - "isSource": true, - "original": { - "value": 2 - }, - "name": "SizeGutterScreenM", - "attributes": { - "category": "size", - "type": "gutter", - "item": "screen", - "subitem": "m" - }, - "path": [ - "size", - "gutter", - "screen", - "m" - ] - } - } - } - }, - "screen": { - "s": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ScreenS", - "attributes": { - "category": "screen", - "type": "s" - }, - "path": [ - "screen", - "s" - ] - }, - "s-medium": { - "value": "320px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "320px" - }, - "name": "ScreenSMedium", - "attributes": { - "category": "screen", - "type": "s-medium" - }, - "path": [ - "screen", - "s-medium" - ] - }, - "s-large": { - "value": "360px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "360px" - }, - "name": "ScreenSLarge", - "attributes": { - "category": "screen", - "type": "s-large" - }, - "path": [ - "screen", - "s-large" - ] - }, - "s-xlarge": { - "value": "390px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "390px" - }, - "name": "ScreenSXlarge", - "attributes": { - "category": "screen", - "type": "s-xlarge" - }, - "path": [ - "screen", - "s-xlarge" - ] - }, - "m": { - "value": "680px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "680px" - }, - "name": "ScreenM", - "attributes": { - "category": "screen", - "type": "m" - }, - "path": [ - "screen", - "m" - ] - }, - "m-medium": { - "value": "769px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "769px" - }, - "name": "ScreenMMedium", - "attributes": { - "category": "screen", - "type": "m-medium" - }, - "path": [ - "screen", - "m-medium" - ] - }, - "l": { - "value": "1024px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1024px" - }, - "name": "ScreenL", - "attributes": { - "category": "screen", - "type": "l" - }, - "path": [ - "screen", - "l" - ] - }, - "l-medium": { - "value": "1100px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1100px" - }, - "name": "ScreenLMedium", - "attributes": { - "category": "screen", - "type": "l-medium" - }, - "path": [ - "screen", - "l-medium" - ] - }, - "xl": { - "value": "1280px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1280px" - }, - "name": "ScreenXl", - "attributes": { - "category": "screen", - "type": "xl" - }, - "path": [ - "screen", - "xl" - ] - }, - "xl-medium": { - "value": "1440px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1440px" - }, - "name": "ScreenXlMedium", - "attributes": { - "category": "screen", - "type": "xl-medium" - }, - "path": [ - "screen", - "xl-medium" - ] - }, - "xl-large": { - "value": "1680px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1680px" - }, - "name": "ScreenXlLarge", - "attributes": { - "category": "screen", - "type": "xl-large" - }, - "path": [ - "screen", - "xl-large" - ] - }, - "xxl": { - "value": "1920px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1920px" - }, - "name": "ScreenXxl", - "attributes": { - "category": "screen", - "type": "xxl" - }, - "path": [ - "screen", - "xxl" - ] - } - } -}; \ No newline at end of file diff --git a/packages/tokens/build/adeo/scss/_tokens.scss b/packages/tokens/build/adeo/scss/_tokens.scss deleted file mode 100644 index d6b1dc6e4..000000000 --- a/packages/tokens/build/adeo/scss/_tokens.scss +++ /dev/null @@ -1,1586 +0,0 @@ - -$border-s: 1 !default; -$border-m: 2 !default; -$border-l: 3 !default; -$color-badge-info-background: #daeff7 !default; -$color-badge-info-border: #0b96cc !default; -$color-badge-info-text: #005c91 !default; -$color-badge-success-background: #ebf5de !default; -$color-badge-success-border: #46a610 !default; -$color-badge-success-text: #006902 !default; -$color-badge-warning-background: #fdf1e8 !default; -$color-badge-warning-border: #ea7315 !default; -$color-badge-warning-text: #8c3500 !default; -$color-badge-danger-background: #fdeaea !default; -$color-badge-danger-border: #ea302d !default; -$color-badge-danger-text: #8c0003 !default; -$color-badge-neutral-background: #e6e6e6 !default; -$color-badge-neutral-border: #808080 !default; -$color-badge-neutral-text: #4d4d4d !default; -$color-primary-01-100: #d9f0f3 !default; -$color-primary-01-200: #91d5db !default; -$color-primary-01-300: #48bac4 !default; -$color-primary-01-400: #009eac !default; -$color-primary-01-500: #00919f !default; -$color-primary-01-600: #007f8c !default; -$color-primary-01-700: #006974 !default; -$color-primary-01-800: #004e57 !default; -$color-primary-01-900: #002e33 !default; -$color-primary-02-100: #eeeff1 !default; -$color-primary-02-200: #cfd2d8 !default; -$color-primary-02-300: #b3b7c1 !default; -$color-primary-02-400: #8f94a3 !default; -$color-primary-02-500: #6a7081 !default; -$color-primary-02-600: #494f60 !default; -$color-primary-02-700: #343b4c !default; -$color-primary-02-800: #242938 !default; -$color-primary-02-900: #171b26 !default; -$color-grey-100: #e6e6e6 !default; -$color-grey-200: #cccccc !default; -$color-grey-300: #b3b3b3 !default; -$color-grey-400: #999999 !default; -$color-grey-500: #808080 !default; -$color-grey-600: #666666 !default; -$color-grey-700: #4d4d4d !default; -$color-grey-800: #333333 !default; -$color-grey-900: #191919 !default; -$color-grey-999: #000000 !default; -$color-grey-000: #ffffff !default; -$color-secondary-blue-100: #eaedef !default; -$color-secondary-blue-200: #cdd4d8 !default; -$color-secondary-blue-300: #b0bbc0 !default; -$color-secondary-blue-400: #92a2a9 !default; -$color-secondary-blue-500: #758992 !default; -$color-secondary-blue-600: #5b737d !default; -$color-secondary-blue-700: #405d68 !default; -$color-secondary-blue-800: #264653 !default; -$color-secondary-blue-900: #082435 !default; -$color-secondary-green-100: #d9f0f3 !default; -$color-secondary-green-200: #91d5db !default; -$color-secondary-green-300: #48bac4 !default; -$color-secondary-green-400: #009eac !default; -$color-secondary-green-500: #00919f !default; -$color-secondary-green-600: #007f8c !default; -$color-secondary-green-700: #006974 !default; -$color-secondary-green-800: #004e57 !default; -$color-secondary-green-900: #002e33 !default; -$color-secondary-purple-100: #e7e7f0 !default; -$color-secondary-purple-200: #c5c5dc !default; -$color-secondary-purple-300: #a4a3c7 !default; -$color-secondary-purple-400: #8281b2 !default; -$color-secondary-purple-500: #605f9d !default; -$color-secondary-purple-600: #4b4a8c !default; -$color-secondary-purple-700: #393879 !default; -$color-secondary-purple-800: #282863 !default; -$color-secondary-purple-900: #1a1a4b !default; -$color-secondary-red-100: #fdeaea !default; -$color-secondary-red-200: #f8bcbb !default; -$color-secondary-red-300: #f38d8c !default; -$color-secondary-red-400: #ef5f5c !default; -$color-secondary-red-500: #ea302d !default; -$color-secondary-red-600: #c61112 !default; -$color-secondary-red-700: #8c0003 !default; -$color-secondary-red-800: #530000 !default; -$color-secondary-red-900: #2d0000 !default; -$color-secondary-orange-100: #fdf1e8 !default; -$color-secondary-orange-200: #f8d2b3 !default; -$color-secondary-orange-300: #f4b27e !default; -$color-secondary-orange-400: #ef934a !default; -$color-secondary-orange-500: #ea7315 !default; -$color-secondary-orange-600: #c65200 !default; -$color-secondary-orange-700: #8c3500 !default; -$color-secondary-orange-800: #531b00 !default; -$color-secondary-orange-900: #360e00 !default; -$color-secondary-yellow-100: #fff8e2 !default; -$color-secondary-yellow-200: #ffebaf !default; -$color-secondary-yellow-300: #fee07d !default; -$color-secondary-yellow-400: #fcd64c !default; -$color-secondary-yellow-500: #f8cc1c !default; -$color-secondary-yellow-600: #c9a21b !default; -$color-secondary-yellow-700: #9c7b18 !default; -$color-secondary-yellow-800: #705613 !default; -$color-secondary-yellow-900: #46350d !default; -$color-danger-100: #fdeaea !default; -$color-danger-200: #f8bcbb !default; -$color-danger-300: #f38d8c !default; -$color-danger-400: #ef5f5c !default; -$color-danger-500: #ea302d !default; -$color-danger-600: #c61112 !default; -$color-danger-700: #8c0003 !default; -$color-danger-800: #530000 !default; -$color-danger-900: #2d0000 !default; -$color-info-100: #daeff7 !default; -$color-info-200: #a7d9ed !default; -$color-info-300: #73c3e2 !default; -$color-info-400: #3facd7 !default; -$color-info-500: #0b96cc !default; -$color-info-600: #007bb4 !default; -$color-info-700: #005c91 !default; -$color-info-800: #003a5c !default; -$color-info-900: #002a41 !default; -$color-warning-100: #fdf1e8 !default; -$color-warning-200: #f8d2b3 !default; -$color-warning-300: #f4b27e !default; -$color-warning-400: #ef934a !default; -$color-warning-500: #ea7315 !default; -$color-warning-600: #c65200 !default; -$color-warning-700: #8c3500 !default; -$color-warning-800: #531b00 !default; -$color-warning-900: #360e00 !default; -$color-success-100: #ebf5de !default; -$color-success-200: #c5e39e !default; -$color-success-300: #9ed05f !default; -$color-success-400: #78be20 !default; -$color-success-500: #46a610 !default; -$color-success-600: #188803 !default; -$color-success-700: #006902 !default; -$color-success-800: #035010 !default; -$color-success-900: #023618 !default; -$color-breadcrumb-arrow: #333333 !default; -$color-breadcrumb-arrow-invert: #ffffff !default; -$color-button-solid-background: #007f8c !default; -$color-button-solid-font: #ffffff !default; -$color-button-solid-focus-border: #006974 !default; -$color-button-solid-disabled-background: #cccccc !default; -$color-button-solid-disabled-font: #666666 !default; -$color-button-solid-active-background: #006974 !default; -$color-button-solid-hover-background: #006974 !default; -$color-button-solid-hover-font: #ffffff !default; -$color-button-solid-primary-02-background: #6a7081 !default; -$color-button-solid-primary-02-font: #ffffff !default; -$color-button-solid-primary-02-focus-border: #171b26 !default; -$color-button-solid-primary-02-disabled-background: #cccccc !default; -$color-button-solid-primary-02-disabled-font: #666666 !default; -$color-button-solid-primary-02-active-background: #171b26 !default; -$color-button-solid-primary-02-hover-background: #242938 !default; -$color-button-solid-primary-02-hover-font: #ffffff !default; -$color-button-solid-neutral-background: #333333 !default; -$color-button-solid-neutral-font: #ffffff !default; -$color-button-solid-neutral-focus-border: #191919 !default; -$color-button-solid-neutral-disabled-background: #cccccc !default; -$color-button-solid-neutral-disabled-font: #666666 !default; -$color-button-solid-neutral-active-background: #333333 !default; -$color-button-solid-neutral-hover-background: #191919 !default; -$color-button-solid-neutral-hover-font: #ffffff !default; -$color-button-solid-danger-background: #c61112 !default; -$color-button-solid-danger-font: #ffffff !default; -$color-button-solid-danger-focus-border: #8c0003 !default; -$color-button-solid-danger-disabled-background: #cccccc !default; -$color-button-solid-danger-disabled-font: #666666 !default; -$color-button-solid-danger-active-background: #8c0003 !default; -$color-button-solid-danger-hover-background: #8c0003 !default; -$color-button-solid-danger-hover-font: #ffffff !default; -$color-button-bordered-background: #ffffff !default; -$color-button-bordered-border: #007f8c !default; -$color-button-bordered-font: #007f8c !default; -$color-button-bordered-focus-border: #006974 !default; -$color-button-bordered-disabled-background: #cccccc !default; -$color-button-bordered-disabled-font: #666666 !default; -$color-button-bordered-active-background: #91d5db !default; -$color-button-bordered-active-font: #004e57 !default; -$color-button-bordered-hover-background: #d9f0f3 !default; -$color-button-bordered-hover-font: #006974 !default; -$color-button-bordered-primary-02-background: #ffffff !default; -$color-button-bordered-primary-02-border: #6a7081 !default; -$color-button-bordered-primary-02-font: #6a7081 !default; -$color-button-bordered-primary-02-focus-border: #171b26 !default; -$color-button-bordered-primary-02-disabled-background: #cccccc !default; -$color-button-bordered-primary-02-disabled-font: #666666 !default; -$color-button-bordered-primary-02-active-background: #cfd2d8 !default; -$color-button-bordered-primary-02-hover-background: #eeeff1 !default; -$color-button-bordered-neutral-background: #ffffff !default; -$color-button-bordered-neutral-border: #333333 !default; -$color-button-bordered-neutral-font: #333333 !default; -$color-button-bordered-neutral-focus-border: #191919 !default; -$color-button-bordered-neutral-disabled-background: #cccccc !default; -$color-button-bordered-neutral-disabled-font: #666666 !default; -$color-button-bordered-neutral-active-background: #cccccc !default; -$color-button-bordered-neutral-hover-background: #e6e6e6 !default; -$color-button-bordered-danger-background: #ffffff !default; -$color-button-bordered-danger-border: #c61112 !default; -$color-button-bordered-danger-font: #c61112 !default; -$color-button-bordered-danger-focus-border: #8c0003 !default; -$color-button-bordered-danger-disabled-background: #cccccc !default; -$color-button-bordered-danger-disabled-font: #666666 !default; -$color-button-bordered-danger-active-background: #f8bcbb !default; -$color-button-bordered-danger-active-font: #530000 !default; -$color-button-bordered-danger-hover-background: #fdeaea !default; -$color-button-bordered-danger-hover-font: #8c0003 !default; -$color-card-bordered-background: #ffffff !default; -$color-card-bordered-border: #808080 !default; -$color-datatable-filters-border: #b0bbc0 !default; -$color-datatable-container-background: #e7e7f0 !default; -$color-datatable-thead-font: #393879 !default; -$color-datatable-sort-arrow-default: #cdd4d8 !default; -$color-datatable-sort-arrow-active: #605f9d !default; -$color-datatable-cell-font: #191919 !default; -$color-datatable-cell-background-hover: #eaedef !default; -$color-datatable-cell-background-selected: #d9f0f3 !default; -$color-datatable-subtable-background: #e7e7f0 !default; -$color-datatable-subtable-border: #a4a3c7 !default; -$color-datatable-subtable-font: #1a1a4b !default; -$color-datatable-icon: #007f8c !default; -$color-dialog-background: #ffffff !default; -$color-dialog-icon: #666666 !default; -$color-dialog-close: #808080 !default; -$color-dialog-footer-shadow: #191919 !default; -$color-divider-lightest: #ffffff !default; -$color-divider-light: #b3b3b3 !default; -$color-divider-default: #666666 !default; -$color-divider-dark: #000000 !default; -$color-fields-error: #c61112 !default; -$color-fields-label: #333333 !default; -$color-fields-requirement: #666666 !default; -$color-fields-help: #666666 !default; -$color-fileuploader-font: #000000 !default; -$color-fileuploader-files-list: #e6e6e6 !default; -$color-fileuploader-files-delete: #cccccc !default; -$color-fileuploader-valid: #00919f !default; -$color-fileuploader-alert: #c61112 !default; -$color-flag-solid-background: #007f8c !default; -$color-flag-solid-border: #007f8c !default; -$color-flag-solid-text: #ffffff !default; -$color-flag-solid-primary-02-background: #4b4a8c !default; -$color-flag-solid-primary-02-border: #4b4a8c !default; -$color-flag-solid-primary-02-text: #ffffff !default; -$color-flag-solid-dark-background: #000000 !default; -$color-flag-solid-dark-border: #000000 !default; -$color-flag-solid-dark-text: #ffffff !default; -$color-flag-solid-light-background: #ffffff !default; -$color-flag-solid-light-border: #ffffff !default; -$color-flag-solid-light-text: #000000 !default; -$color-flag-solid-danger-background: #c61112 !default; -$color-flag-solid-danger-border: #c61112 !default; -$color-flag-solid-danger-text: #ffffff !default; -$color-flag-bordered-background: #ffffff !default; -$color-flag-bordered-border: #007f8c !default; -$color-flag-bordered-text: #007f8c !default; -$color-flag-bordered-primary-02-background: #ffffff !default; -$color-flag-bordered-primary-02-border: #4b4a8c !default; -$color-flag-bordered-primary-02-text: #4b4a8c !default; -$color-flag-bordered-dark-background: #ffffff !default; -$color-flag-bordered-dark-border: #000000 !default; -$color-flag-bordered-dark-text: #000000 !default; -$color-flag-bordered-light-background: #000000 !default; -$color-flag-bordered-light-border: #ffffff !default; -$color-flag-bordered-light-text: #ffffff !default; -$color-flag-bordered-danger-background: #ffffff !default; -$color-flag-bordered-danger-border: #c61112 !default; -$color-flag-bordered-danger-text: #c61112 !default; -$color-focus-gap: #ffffff !default; -$color-focus-border: #758992 !default; -$color-font-primary-01: #007f8c !default; -$color-font-primary-02: #6a7081 !default; -$color-font-darkest: #000000 !default; -$color-font-darker: #191919 !default; -$color-font-dark: #333333 !default; -$color-font-light: #666666 !default; -$color-font-lightest: #ffffff !default; -$color-font-info: #007bb4 !default; -$color-font-success: #188803 !default; -$color-font-warning: #c65200 !default; -$color-font-danger: #c61112 !default; -$color-heading-underline-default: #00919f !default; -$color-heading-underline-lightest: #91d5db !default; -$color-hero-cover-background: #191919 !default; -$color-input-text: #191919 !default; -$color-input-border: #666666 !default; -$color-input-placeholder: #666666 !default; -$color-input-background: #ffffff !default; -$color-input-disabled-background: #e6e6e6 !default; -$color-input-disabled-border: #e6e6e6 !default; -$color-input-disabled-icon: #999999 !default; -$color-input-disabled-label: #808080 !default; -$color-input-hover-border: #191919 !default; -$color-input-focus-border: #758992 !default; -$color-input-valid-border: #46a610 !default; -$color-input-valid-hover-border: #035010 !default; -$color-input-invalid-border: #c61112 !default; -$color-input-invalid-hover-border: #530000 !default; -$color-input-checked-border: #00919f !default; -$color-input-checked-background: #00919f !default; -$color-input-checked-icon: #ffffff !default; -$color-input-checked-hover-border: #004e57 !default; -$color-link-dark-base: #000000 !default; -$color-link-dark-visited: #333333 !default; -$color-link-dark-active: #333333 !default; -$color-link-dark-disabled: #e6e6e6 !default; -$color-link-dark-hover: #666666 !default; -$color-link-light-base: #ffffff !default; -$color-link-light-visited: #cccccc !default; -$color-link-light-active: #cccccc !default; -$color-link-light-disabled: #e6e6e6 !default; -$color-link-light-hover: #999999 !default; -$color-link-primary-base: #007f8c !default; -$color-link-primary-visited: #006974 !default; -$color-link-primary-active: #006974 !default; -$color-link-primary-disabled: #e6e6e6 !default; -$color-link-primary-hover: #004e57 !default; -$color-link-primary-02-base: #494f60 !default; -$color-link-primary-02-visited: #343b4c !default; -$color-link-primary-02-active: #343b4c !default; -$color-link-primary-02-disabled: #e6e6e6 !default; -$color-link-primary-02-hover: #171b26 !default; -$color-link-danger-base: #c61112 !default; -$color-link-danger-visited: #8c0003 !default; -$color-link-danger-active: #8c0003 !default; -$color-link-danger-disabled: #e6e6e6 !default; -$color-link-danger-hover: #530000 !default; -$color-listbox-background: #ffffff !default; -$color-listbox-border: #666666 !default; -$color-listbox-tile-border: #b3b3b3 !default; -$color-listbox-tile-shadow: #191919 !default; -$color-listbox-tile-hover-background: #e6e6e6 !default; -$color-listbox-disabled-background: #cccccc !default; -$color-notification-font: #000000 !default; -$color-notification-information-background: #daeff7 !default; -$color-notification-information-border: #0b96cc !default; -$color-notification-information-icon: #007bb4 !default; -$color-notification-success-background: #ebf5de !default; -$color-notification-success-border: #46a610 !default; -$color-notification-success-icon: #188803 !default; -$color-notification-warning-background: #fdf1e8 !default; -$color-notification-warning-border: #ea7315 !default; -$color-notification-warning-icon: #c65200 !default; -$color-notification-danger-background: #fdeaea !default; -$color-notification-danger-border: #ea302d !default; -$color-notification-danger-icon: #c61112 !default; -$color-option-button-label-shadow: #b3b3b3 !default; -$color-option-button-hover-label-shadow: #333333 !default; -$color-option-button-checked-label-border: #00919f !default; -$color-option-button-checked-label-shadow: #d9f0f3 !default; -$color-option-button-disabled-label-background: #cccccc !default; -$color-option-card-label-shadow: #b3b3b3 !default; -$color-option-card-hover-label-shadow: #333333 !default; -$color-option-card-checked-label-border: #00919f !default; -$color-option-card-checked-label-shadow: #d9f0f3 !default; -$color-option-card-disabled-content: #cccccc !default; -$color-option-card-disabled-label: #666666 !default; -$color-overlay-background: #191919 !default; -$color-overlay-loader-background: #082435 !default; -$color-password-input-button-hover-background: #e6e6e6 !default; -$color-phone-number-button-border: #666666 !default; -$color-phone-number-list-background: #ffffff !default; -$color-phone-number-item-border: #b3b3b3 !default; -$color-phone-number-item-focus-background: #e6e6e6 !default; -$color-progress-background: #cccccc !default; -$color-progress-indicator: #007bb4 !default; -$color-progress-percentage-default: #191919 !default; -$color-progress-percentage-half: #ffffff !default; -$color-progress-branded-indicator: #00919f !default; -$color-star-empty: #ffffff !default; -$color-star-focus: #758992 !default; -$color-star-full: #ea7315 !default; -$color-star-hover: #f4b27e !default; -$color-stepper-item-background: #999999 !default; -$color-stepper-item-current-background: #00919f !default; -$color-stepper-link-hover-text: #00919f !default; -$color-stepper-indicator-background: #ffffff !default; -$color-stepper-indicator-border: #999999 !default; -$color-stepper-indicator-current-background: #00919f !default; -$color-stepper-indicator-current-border: #00919f !default; -$color-stepper-icon: #00919f !default; -$color-stepper-title: #00919f !default; -$color-tabs-background: #ffffff !default; -$color-tabs-shadow: #000000 !default; -$color-tabs-default: #666666 !default; -$color-tabs-element-background: #eeedea !default; -$color-tabs-hover: #004e57 !default; -$color-tabs-disabled-background: #cccccc !default; -$color-tabs-active-background: #dddcd5 !default; -$color-tabs-active-text: #004e57 !default; -$color-tabs-selected-border: #007f8c !default; -$color-tabs-selected-text: #007f8c !default; -$color-tabs-active-disabled: #91d5db !default; -$color-tag-text-light-background: #ffffff !default; -$color-tag-text-light-border: #808080 !default; -$color-tag-text-light-text: #191919 !default; -$color-tag-text-dark-background: #191919 !default; -$color-tag-text-dark-border: #ffffff !default; -$color-tag-text-dark-text: #ffffff !default; -$color-tag-link-light-background: #ffffff !default; -$color-tag-link-light-border: #808080 !default; -$color-tag-link-light-text: #191919 !default; -$color-tag-link-light-hover-background: #e6e6e6 !default; -$color-tag-link-light-active-background: #cccccc !default; -$color-tag-link-dark-background: #191919 !default; -$color-tag-link-dark-border: #ffffff !default; -$color-tag-link-dark-text: #ffffff !default; -$color-tag-link-dark-hover-background: #333333 !default; -$color-tag-link-dark-active-background: #4d4d4d !default; -$color-tag-selectable-light-background: #ffffff !default; -$color-tag-selectable-light-border: #808080 !default; -$color-tag-selectable-light-text: #191919 !default; -$color-tag-selectable-light-hover-background: #48bac4 !default; -$color-tag-selectable-light-active-background: #004e57 !default; -$color-tag-selectable-light-active-border: #004e57 !default; -$color-tag-selectable-light-active-text: #ffffff !default; -$color-tag-selectable-light-disabled-background: #e6e6e6 !default; -$color-tag-selectable-light-disabled-text: #808080 !default; -$color-tag-selectable-light-selected-background: #007f8c !default; -$color-tag-selectable-light-selected-text: #ffffff !default; -$color-tag-selectable-light-selected-hover-background: #006974 !default; -$color-tag-selectable-dark-background: #191919 !default; -$color-tag-selectable-dark-border: #ffffff !default; -$color-tag-selectable-dark-text: #ffffff !default; -$color-tag-selectable-dark-hover-background: #006974 !default; -$color-tag-selectable-dark-active-background: #91d5db !default; -$color-tag-selectable-dark-active-border: #91d5db !default; -$color-tag-selectable-dark-active-text: #191919 !default; -$color-tag-selectable-dark-selected-background: #009eac !default; -$color-tag-selectable-dark-selected-border: #009eac !default; -$color-tag-selectable-dark-selected-text: #191919 !default; -$color-tag-selectable-dark-selected-hover-background: #48bac4 !default; -$color-tag-selectable-dark-disabled-background: #4d4d4d !default; -$color-tag-selectable-dark-disabled-text: #808080 !default; -$color-tag-removable-light-background: #333333 !default; -$color-tag-removable-light-text: #ffffff !default; -$color-tag-removable-light-icon: #cccccc !default; -$color-tag-removable-light-hover-background: #4d4d4d !default; -$color-tag-removable-light-active-background: #666666 !default; -$color-tag-removable-dark-background: #cccccc !default; -$color-tag-removable-dark-text: #191919 !default; -$color-tag-removable-dark-icon: #191919 !default; -$color-tag-removable-dark-hover-background: #b3b3b3 !default; -$color-tag-removable-dark-active-background: #999999 !default; -$color-toggle-label: #000000 !default; -$color-toggle-off-background: #666666 !default; -$color-toggle-off-circle: #ffffff !default; -$color-toggle-on-background: #00919f !default; -$color-toggle-on-circle: #ffffff !default; -$color-toggle-hover-circle: #e6e6e6 !default; -$color-toggle-disabled-background: #e6e6e6 !default; -$color-toggle-disabled-circle: #b3b3b3 !default; -$color-toggle-disabled-label: #808080 !default; -$color-toggle-disabled-checked-background: #91d5db !default; -$color-toggle-disabled-checked-circle: #ffffff !default; -$color-tooltip-background: #5b737d !default; -$color-tooltip-border: #ffffff !default; -$color-secondary-sandgrey-100: #eeedea !default; -$color-secondary-sandgrey-200: #dddcd5 !default; -$color-secondary-sandgrey-300: #c2c1ba !default; -$color-secondary-sandgrey-400: #a7a6a0 !default; -$color-secondary-sandgrey-500: #8c8b85 !default; -$color-secondary-sandgrey-600: #71706b !default; -$color-secondary-sandgrey-700: #555550 !default; -$color-secondary-sandgrey-800: #3a3936 !default; -$color-secondary-sandgrey-900: #1e1e1c !default; -$font-family: Roboto !default; -$font-weight-light: 300 !default; -$font-weight-regular: 400 !default; -$font-weight-semi-bold: 500 !default; -$preset: adeo !default; -$radius-s: 2 !default; -$radius-m: 4 !default; -$radius-l: 6 !default; -$shadow-s-x: 0px !default; -$shadow-s-y: 1px !default; -$shadow-s-blur: 5px !default; -$shadow-s-spread: 0px !default; -$shadow-s-opacity: 0.2 !default; -$shadow-m-x: 0px !default; -$shadow-m-y: 2px !default; -$shadow-m-blur: 10px !default; -$shadow-m-spread: 0px !default; -$shadow-m-opacity: 0.2 !default; -$shadow-l-x: 0px !default; -$shadow-l-y: 4px !default; -$shadow-l-blur: 20px !default; -$shadow-l-spread: 0px !default; -$shadow-l-opacity: 0.2 !default; -$magic-unit: 1 !default; -$local-rem-value: 16 !default; -$size-font-10: 2.5625rem !default; // 41px -$size-font-11: 3.0625rem !default; // 49px -$size-font-12: 3.6875rem !default; // 59px -$size-font-01: 0.6815rem !default; // 11px -$size-font-02: 0.75rem !default; // 12px -$size-font-03: 0.8125rem !default; // 13px -$size-font-04: 0.875rem !default; // 14px -$size-font-05: 1rem !default; // 16px -$size-font-06: 1.125rem !default; // 18px -$size-font-07: 1.4375rem !default; // 23px -$size-font-08: 1.75rem !default; // 28px -$size-font-09: 2.125rem !default; // 34px -$size-line-10-xs: 2.5rem !default; // 40px -$size-line-10-s: 3rem !default; // 48px -$size-line-10-m: 3.5rem !default; // 56px -$size-line-10-l: 3.75rem !default; // 60px -$size-line-11-xs: 3rem !default; // 48px -$size-line-11-s: 3.5rem !default; // 56px -$size-line-11-m: 4.25rem !default; // 68px -$size-line-11-l: 4.5rem !default; // 72px -$size-line-12-xs: 3.75rem !default; // 60px -$size-line-12-s: 4.25rem !default; // 68px -$size-line-12-m: 5rem !default; // 80px -$size-line-12-l: 5.5rem !default; // 88px -$size-line-01-xs: 0.75rem !default; // 12px -$size-line-01-s: 0.75rem !default; // 12px -$size-line-01-m: 0.875rem !default; // 14px -$size-line-01-l: 1rem !default; // 16px -$size-line-02-xs: 0.75rem !default; // 12px -$size-line-02-s: 0.875rem !default; // 14px -$size-line-02-m: 1rem !default; // 16px -$size-line-02-l: 1.125rem !default; // 18px -$size-line-03-xs: 0.875rem !default; // 14px -$size-line-03-s: 1rem !default; // 16px -$size-line-03-m: 1.125rem !default; // 18px -$size-line-03-l: 1.25rem !default; // 20px -$size-line-04-xs: 0.875rem !default; // 14px -$size-line-04-s: 1rem !default; // 16px -$size-line-04-m: 1.125rem !default; // 18px -$size-line-04-l: 1.375rem !default; // 22px -$size-line-05-xs: 1rem !default; // 16px -$size-line-05-s: 1.125rem !default; // 18px -$size-line-05-m: 1.375rem !default; // 22px -$size-line-05-l: 1.5rem !default; // 24px -$size-line-06-xs: 1.125rem !default; // 18px -$size-line-06-s: 1.25rem !default; // 20px -$size-line-06-m: 1.5rem !default; // 24px -$size-line-06-l: 1.75rem !default; // 28px -$size-line-07-xs: 1.5rem !default; // 24px -$size-line-07-s: 1.75rem !default; // 28px -$size-line-07-m: 2rem !default; // 32px -$size-line-07-l: 2.25rem !default; // 36px -$size-line-08-xs: 1.75rem !default; // 28px -$size-line-08-s: 2rem !default; // 32px -$size-line-08-m: 2.25rem !default; // 36px -$size-line-08-l: 2.75rem !default; // 44px -$size-line-09-xs: 2.25rem !default; // 36px -$size-line-09-s: 2.5rem !default; // 40px -$size-line-09-m: 2.75rem !default; // 44px -$size-line-09-l: 3.25rem !default; // 52px -$size-gutter-screen-s: 1rem !default; -$size-gutter-screen-m: 2rem !default; -$screen-s: 0px !default; -$screen-s-medium: 320px !default; -$screen-s-large: 360px !default; -$screen-s-xlarge: 390px !default; -$screen-m: 680px !default; -$screen-m-medium: 769px !default; -$screen-l: 1024px !default; -$screen-l-medium: 1100px !default; -$screen-xl: 1280px !default; -$screen-xl-medium: 1440px !default; -$screen-xl-large: 1680px !default; -$screen-xxl: 1920px !default; - -$tokens: ( - 'border': ( - 's': $border-s, - 'm': $border-m, - 'l': $border-l - ), - 'color': ( - 'badge': ( - 'info': ( - 'background': $color-badge-info-background, - 'border': $color-badge-info-border, - 'text': $color-badge-info-text - ), - 'success': ( - 'background': $color-badge-success-background, - 'border': $color-badge-success-border, - 'text': $color-badge-success-text - ), - 'warning': ( - 'background': $color-badge-warning-background, - 'border': $color-badge-warning-border, - 'text': $color-badge-warning-text - ), - 'danger': ( - 'background': $color-badge-danger-background, - 'border': $color-badge-danger-border, - 'text': $color-badge-danger-text - ), - 'neutral': ( - 'background': $color-badge-neutral-background, - 'border': $color-badge-neutral-border, - 'text': $color-badge-neutral-text - ) - ), - 'primary-01': ( - '100': $color-primary-01-100, - '200': $color-primary-01-200, - '300': $color-primary-01-300, - '400': $color-primary-01-400, - '500': $color-primary-01-500, - '600': $color-primary-01-600, - '700': $color-primary-01-700, - '800': $color-primary-01-800, - '900': $color-primary-01-900 - ), - 'primary-02': ( - '100': $color-primary-02-100, - '200': $color-primary-02-200, - '300': $color-primary-02-300, - '400': $color-primary-02-400, - '500': $color-primary-02-500, - '600': $color-primary-02-600, - '700': $color-primary-02-700, - '800': $color-primary-02-800, - '900': $color-primary-02-900 - ), - 'grey': ( - '100': $color-grey-100, - '200': $color-grey-200, - '300': $color-grey-300, - '400': $color-grey-400, - '500': $color-grey-500, - '600': $color-grey-600, - '700': $color-grey-700, - '800': $color-grey-800, - '900': $color-grey-900, - '999': $color-grey-999, - '000': $color-grey-000 - ), - 'secondary-blue': ( - '100': $color-secondary-blue-100, - '200': $color-secondary-blue-200, - '300': $color-secondary-blue-300, - '400': $color-secondary-blue-400, - '500': $color-secondary-blue-500, - '600': $color-secondary-blue-600, - '700': $color-secondary-blue-700, - '800': $color-secondary-blue-800, - '900': $color-secondary-blue-900 - ), - 'secondary-green': ( - '100': $color-secondary-green-100, - '200': $color-secondary-green-200, - '300': $color-secondary-green-300, - '400': $color-secondary-green-400, - '500': $color-secondary-green-500, - '600': $color-secondary-green-600, - '700': $color-secondary-green-700, - '800': $color-secondary-green-800, - '900': $color-secondary-green-900 - ), - 'secondary-purple': ( - '100': $color-secondary-purple-100, - '200': $color-secondary-purple-200, - '300': $color-secondary-purple-300, - '400': $color-secondary-purple-400, - '500': $color-secondary-purple-500, - '600': $color-secondary-purple-600, - '700': $color-secondary-purple-700, - '800': $color-secondary-purple-800, - '900': $color-secondary-purple-900 - ), - 'secondary-red': ( - '100': $color-secondary-red-100, - '200': $color-secondary-red-200, - '300': $color-secondary-red-300, - '400': $color-secondary-red-400, - '500': $color-secondary-red-500, - '600': $color-secondary-red-600, - '700': $color-secondary-red-700, - '800': $color-secondary-red-800, - '900': $color-secondary-red-900 - ), - 'secondary-orange': ( - '100': $color-secondary-orange-100, - '200': $color-secondary-orange-200, - '300': $color-secondary-orange-300, - '400': $color-secondary-orange-400, - '500': $color-secondary-orange-500, - '600': $color-secondary-orange-600, - '700': $color-secondary-orange-700, - '800': $color-secondary-orange-800, - '900': $color-secondary-orange-900 - ), - 'secondary-yellow': ( - '100': $color-secondary-yellow-100, - '200': $color-secondary-yellow-200, - '300': $color-secondary-yellow-300, - '400': $color-secondary-yellow-400, - '500': $color-secondary-yellow-500, - '600': $color-secondary-yellow-600, - '700': $color-secondary-yellow-700, - '800': $color-secondary-yellow-800, - '900': $color-secondary-yellow-900 - ), - 'danger': ( - '100': $color-danger-100, - '200': $color-danger-200, - '300': $color-danger-300, - '400': $color-danger-400, - '500': $color-danger-500, - '600': $color-danger-600, - '700': $color-danger-700, - '800': $color-danger-800, - '900': $color-danger-900 - ), - 'info': ( - '100': $color-info-100, - '200': $color-info-200, - '300': $color-info-300, - '400': $color-info-400, - '500': $color-info-500, - '600': $color-info-600, - '700': $color-info-700, - '800': $color-info-800, - '900': $color-info-900 - ), - 'warning': ( - '100': $color-warning-100, - '200': $color-warning-200, - '300': $color-warning-300, - '400': $color-warning-400, - '500': $color-warning-500, - '600': $color-warning-600, - '700': $color-warning-700, - '800': $color-warning-800, - '900': $color-warning-900 - ), - 'success': ( - '100': $color-success-100, - '200': $color-success-200, - '300': $color-success-300, - '400': $color-success-400, - '500': $color-success-500, - '600': $color-success-600, - '700': $color-success-700, - '800': $color-success-800, - '900': $color-success-900 - ), - 'breadcrumb': ( - 'arrow': $color-breadcrumb-arrow, - 'arrow-invert': $color-breadcrumb-arrow-invert - ), - 'button': ( - 'solid': ( - 'background': $color-button-solid-background, - 'font': $color-button-solid-font, - 'focus': ( - 'border': $color-button-solid-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-disabled-background, - 'font': $color-button-solid-disabled-font - ), - 'active': ( - 'background': $color-button-solid-active-background - ), - 'hover': ( - 'background': $color-button-solid-hover-background, - 'font': $color-button-solid-hover-font - ) - ), - 'solid-primary-02': ( - 'background': $color-button-solid-primary-02-background, - 'font': $color-button-solid-primary-02-font, - 'focus': ( - 'border': $color-button-solid-primary-02-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-primary-02-disabled-background, - 'font': $color-button-solid-primary-02-disabled-font - ), - 'active': ( - 'background': $color-button-solid-primary-02-active-background - ), - 'hover': ( - 'background': $color-button-solid-primary-02-hover-background, - 'font': $color-button-solid-primary-02-hover-font - ) - ), - 'solid-neutral': ( - 'background': $color-button-solid-neutral-background, - 'font': $color-button-solid-neutral-font, - 'focus': ( - 'border': $color-button-solid-neutral-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-neutral-disabled-background, - 'font': $color-button-solid-neutral-disabled-font - ), - 'active': ( - 'background': $color-button-solid-neutral-active-background - ), - 'hover': ( - 'background': $color-button-solid-neutral-hover-background, - 'font': $color-button-solid-neutral-hover-font - ) - ), - 'solid-danger': ( - 'background': $color-button-solid-danger-background, - 'font': $color-button-solid-danger-font, - 'focus': ( - 'border': $color-button-solid-danger-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-danger-disabled-background, - 'font': $color-button-solid-danger-disabled-font - ), - 'active': ( - 'background': $color-button-solid-danger-active-background - ), - 'hover': ( - 'background': $color-button-solid-danger-hover-background, - 'font': $color-button-solid-danger-hover-font - ) - ), - 'bordered': ( - 'background': $color-button-bordered-background, - 'border': $color-button-bordered-border, - 'font': $color-button-bordered-font, - 'focus': ( - 'border': $color-button-bordered-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-disabled-background, - 'font': $color-button-bordered-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-active-background, - 'font': $color-button-bordered-active-font - ), - 'hover': ( - 'background': $color-button-bordered-hover-background, - 'font': $color-button-bordered-hover-font - ) - ), - 'bordered-primary-02': ( - 'background': $color-button-bordered-primary-02-background, - 'border': $color-button-bordered-primary-02-border, - 'font': $color-button-bordered-primary-02-font, - 'focus': ( - 'border': $color-button-bordered-primary-02-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-primary-02-disabled-background, - 'font': $color-button-bordered-primary-02-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-primary-02-active-background - ), - 'hover': ( - 'background': $color-button-bordered-primary-02-hover-background - ) - ), - 'bordered-neutral': ( - 'background': $color-button-bordered-neutral-background, - 'border': $color-button-bordered-neutral-border, - 'font': $color-button-bordered-neutral-font, - 'focus': ( - 'border': $color-button-bordered-neutral-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-neutral-disabled-background, - 'font': $color-button-bordered-neutral-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-neutral-active-background - ), - 'hover': ( - 'background': $color-button-bordered-neutral-hover-background - ) - ), - 'bordered-danger': ( - 'background': $color-button-bordered-danger-background, - 'border': $color-button-bordered-danger-border, - 'font': $color-button-bordered-danger-font, - 'focus': ( - 'border': $color-button-bordered-danger-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-danger-disabled-background, - 'font': $color-button-bordered-danger-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-danger-active-background, - 'font': $color-button-bordered-danger-active-font - ), - 'hover': ( - 'background': $color-button-bordered-danger-hover-background, - 'font': $color-button-bordered-danger-hover-font - ) - ) - ), - 'card': ( - 'bordered': ( - 'background': $color-card-bordered-background, - 'border': $color-card-bordered-border - ) - ), - 'datatable': ( - 'filters': ( - 'border': $color-datatable-filters-border - ), - 'container': ( - 'background': $color-datatable-container-background - ), - 'thead': ( - 'font': $color-datatable-thead-font - ), - 'sort-arrow': ( - 'default': $color-datatable-sort-arrow-default, - 'active': $color-datatable-sort-arrow-active - ), - 'cell': ( - 'font': $color-datatable-cell-font, - 'background': ( - 'hover': $color-datatable-cell-background-hover, - 'selected': $color-datatable-cell-background-selected - ) - ), - 'subtable': ( - 'background': $color-datatable-subtable-background, - 'border': $color-datatable-subtable-border, - 'font': $color-datatable-subtable-font - ), - 'icon': $color-datatable-icon - ), - 'dialog': ( - 'background': $color-dialog-background, - 'icon': $color-dialog-icon, - 'close': $color-dialog-close, - 'footer': ( - 'shadow': $color-dialog-footer-shadow - ) - ), - 'divider': ( - 'lightest': $color-divider-lightest, - 'light': $color-divider-light, - 'default': $color-divider-default, - 'dark': $color-divider-dark - ), - 'fields': ( - 'error': $color-fields-error, - 'label': $color-fields-label, - 'requirement': $color-fields-requirement, - 'help': $color-fields-help - ), - 'fileuploader': ( - 'font': $color-fileuploader-font, - 'files': ( - 'list': $color-fileuploader-files-list, - 'delete': $color-fileuploader-files-delete - ), - 'valid': $color-fileuploader-valid, - 'alert': $color-fileuploader-alert - ), - 'flag': ( - 'solid': ( - 'background': $color-flag-solid-background, - 'border': $color-flag-solid-border, - 'text': $color-flag-solid-text - ), - 'solid-primary-02': ( - 'background': $color-flag-solid-primary-02-background, - 'border': $color-flag-solid-primary-02-border, - 'text': $color-flag-solid-primary-02-text - ), - 'solid-dark': ( - 'background': $color-flag-solid-dark-background, - 'border': $color-flag-solid-dark-border, - 'text': $color-flag-solid-dark-text - ), - 'solid-light': ( - 'background': $color-flag-solid-light-background, - 'border': $color-flag-solid-light-border, - 'text': $color-flag-solid-light-text - ), - 'solid-danger': ( - 'background': $color-flag-solid-danger-background, - 'border': $color-flag-solid-danger-border, - 'text': $color-flag-solid-danger-text - ), - 'bordered': ( - 'background': $color-flag-bordered-background, - 'border': $color-flag-bordered-border, - 'text': $color-flag-bordered-text - ), - 'bordered-primary-02': ( - 'background': $color-flag-bordered-primary-02-background, - 'border': $color-flag-bordered-primary-02-border, - 'text': $color-flag-bordered-primary-02-text - ), - 'bordered-dark': ( - 'background': $color-flag-bordered-dark-background, - 'border': $color-flag-bordered-dark-border, - 'text': $color-flag-bordered-dark-text - ), - 'bordered-light': ( - 'background': $color-flag-bordered-light-background, - 'border': $color-flag-bordered-light-border, - 'text': $color-flag-bordered-light-text - ), - 'bordered-danger': ( - 'background': $color-flag-bordered-danger-background, - 'border': $color-flag-bordered-danger-border, - 'text': $color-flag-bordered-danger-text - ) - ), - 'focus': ( - 'gap': $color-focus-gap, - 'border': $color-focus-border - ), - 'font': ( - 'primary-01': $color-font-primary-01, - 'primary-02': $color-font-primary-02, - 'darkest': $color-font-darkest, - 'darker': $color-font-darker, - 'dark': $color-font-dark, - 'light': $color-font-light, - 'lightest': $color-font-lightest, - 'info': $color-font-info, - 'success': $color-font-success, - 'warning': $color-font-warning, - 'danger': $color-font-danger - ), - 'heading': ( - 'underline': ( - 'default': $color-heading-underline-default, - 'lightest': $color-heading-underline-lightest - ) - ), - 'hero': ( - 'cover': ( - 'background': $color-hero-cover-background - ) - ), - 'input': ( - 'text': $color-input-text, - 'border': $color-input-border, - 'placeholder': $color-input-placeholder, - 'background': $color-input-background, - 'disabled': ( - 'background': $color-input-disabled-background, - 'border': $color-input-disabled-border, - 'icon': $color-input-disabled-icon, - 'label': $color-input-disabled-label - ), - 'hover': ( - 'border': $color-input-hover-border - ), - 'focus': ( - 'border': $color-input-focus-border - ), - 'valid': ( - 'border': $color-input-valid-border, - 'hover': ( - 'border': $color-input-valid-hover-border - ) - ), - 'invalid': ( - 'border': $color-input-invalid-border, - 'hover': ( - 'border': $color-input-invalid-hover-border - ) - ), - 'checked': ( - 'border': $color-input-checked-border, - 'background': $color-input-checked-background, - 'icon': $color-input-checked-icon, - 'hover': ( - 'border': $color-input-checked-hover-border - ) - ) - ), - 'link': ( - 'dark': ( - 'base': $color-link-dark-base, - 'visited': $color-link-dark-visited, - 'active': $color-link-dark-active, - 'disabled': $color-link-dark-disabled, - 'hover': $color-link-dark-hover - ), - 'light': ( - 'base': $color-link-light-base, - 'visited': $color-link-light-visited, - 'active': $color-link-light-active, - 'disabled': $color-link-light-disabled, - 'hover': $color-link-light-hover - ), - 'primary': ( - 'base': $color-link-primary-base, - 'visited': $color-link-primary-visited, - 'active': $color-link-primary-active, - 'disabled': $color-link-primary-disabled, - 'hover': $color-link-primary-hover - ), - 'primary-02': ( - 'base': $color-link-primary-02-base, - 'visited': $color-link-primary-02-visited, - 'active': $color-link-primary-02-active, - 'disabled': $color-link-primary-02-disabled, - 'hover': $color-link-primary-02-hover - ), - 'danger': ( - 'base': $color-link-danger-base, - 'visited': $color-link-danger-visited, - 'active': $color-link-danger-active, - 'disabled': $color-link-danger-disabled, - 'hover': $color-link-danger-hover - ) - ), - 'listbox': ( - 'background': $color-listbox-background, - 'border': $color-listbox-border, - 'tile': ( - 'border': $color-listbox-tile-border, - 'shadow': $color-listbox-tile-shadow, - 'hover': ( - 'background': $color-listbox-tile-hover-background - ) - ), - 'disabled': ( - 'background': $color-listbox-disabled-background - ) - ), - 'notification': ( - 'font': $color-notification-font, - 'information': ( - 'background': $color-notification-information-background, - 'border': $color-notification-information-border, - 'icon': $color-notification-information-icon - ), - 'success': ( - 'background': $color-notification-success-background, - 'border': $color-notification-success-border, - 'icon': $color-notification-success-icon - ), - 'warning': ( - 'background': $color-notification-warning-background, - 'border': $color-notification-warning-border, - 'icon': $color-notification-warning-icon - ), - 'danger': ( - 'background': $color-notification-danger-background, - 'border': $color-notification-danger-border, - 'icon': $color-notification-danger-icon - ) - ), - 'option-button': ( - 'label': ( - 'shadow': $color-option-button-label-shadow - ), - 'hover': ( - 'label': ( - 'shadow': $color-option-button-hover-label-shadow - ) - ), - 'checked': ( - 'label': ( - 'border': $color-option-button-checked-label-border, - 'shadow': $color-option-button-checked-label-shadow - ) - ), - 'disabled': ( - 'label': ( - 'background': $color-option-button-disabled-label-background - ) - ) - ), - 'option-card': ( - 'label': ( - 'shadow': $color-option-card-label-shadow - ), - 'hover': ( - 'label': ( - 'shadow': $color-option-card-hover-label-shadow - ) - ), - 'checked': ( - 'label': ( - 'border': $color-option-card-checked-label-border, - 'shadow': $color-option-card-checked-label-shadow - ) - ), - 'disabled': ( - 'content': $color-option-card-disabled-content, - 'label': $color-option-card-disabled-label - ) - ), - 'overlay': ( - 'background': $color-overlay-background, - 'loader': ( - 'background': $color-overlay-loader-background - ) - ), - 'password-input': ( - 'button': ( - 'hover': ( - 'background': $color-password-input-button-hover-background - ) - ) - ), - 'phone-number': ( - 'button': ( - 'border': $color-phone-number-button-border - ), - 'list': ( - 'background': $color-phone-number-list-background - ), - 'item': ( - 'border': $color-phone-number-item-border, - 'focus': ( - 'background': $color-phone-number-item-focus-background - ) - ) - ), - 'progress': ( - 'background': $color-progress-background, - 'indicator': $color-progress-indicator, - 'percentage': ( - 'default': $color-progress-percentage-default, - 'half': $color-progress-percentage-half - ), - 'branded': ( - 'indicator': $color-progress-branded-indicator - ) - ), - 'star': ( - 'empty': $color-star-empty, - 'focus': $color-star-focus, - 'full': $color-star-full, - 'hover': $color-star-hover - ), - 'stepper': ( - 'item': ( - 'background': $color-stepper-item-background, - 'current': ( - 'background': $color-stepper-item-current-background - ) - ), - 'link': ( - 'hover': ( - 'text': $color-stepper-link-hover-text - ) - ), - 'indicator': ( - 'background': $color-stepper-indicator-background, - 'border': $color-stepper-indicator-border, - 'current': ( - 'background': $color-stepper-indicator-current-background, - 'border': $color-stepper-indicator-current-border - ) - ), - 'icon': $color-stepper-icon, - 'title': $color-stepper-title - ), - 'tabs': ( - 'background': $color-tabs-background, - 'shadow': $color-tabs-shadow, - 'default': $color-tabs-default, - 'element': ( - 'background': $color-tabs-element-background - ), - 'hover': $color-tabs-hover, - 'disabled': ( - 'background': $color-tabs-disabled-background - ), - 'active': ( - 'background': $color-tabs-active-background, - 'text': $color-tabs-active-text - ), - 'selected': ( - 'border': $color-tabs-selected-border, - 'text': $color-tabs-selected-text - ), - 'active-disabled': $color-tabs-active-disabled - ), - 'tag': ( - 'text': ( - 'light': ( - 'background': $color-tag-text-light-background, - 'border': $color-tag-text-light-border, - 'text': $color-tag-text-light-text - ), - 'dark': ( - 'background': $color-tag-text-dark-background, - 'border': $color-tag-text-dark-border, - 'text': $color-tag-text-dark-text - ) - ), - 'link': ( - 'light': ( - 'background': $color-tag-link-light-background, - 'border': $color-tag-link-light-border, - 'text': $color-tag-link-light-text, - 'hover': ( - 'background': $color-tag-link-light-hover-background - ), - 'active': ( - 'background': $color-tag-link-light-active-background - ) - ), - 'dark': ( - 'background': $color-tag-link-dark-background, - 'border': $color-tag-link-dark-border, - 'text': $color-tag-link-dark-text, - 'hover': ( - 'background': $color-tag-link-dark-hover-background - ), - 'active': ( - 'background': $color-tag-link-dark-active-background - ) - ) - ), - 'selectable': ( - 'light': ( - 'background': $color-tag-selectable-light-background, - 'border': $color-tag-selectable-light-border, - 'text': $color-tag-selectable-light-text, - 'hover': ( - 'background': $color-tag-selectable-light-hover-background - ), - 'active': ( - 'background': $color-tag-selectable-light-active-background, - 'border': $color-tag-selectable-light-active-border, - 'text': $color-tag-selectable-light-active-text - ), - 'disabled': ( - 'background': $color-tag-selectable-light-disabled-background, - 'text': $color-tag-selectable-light-disabled-text - ), - 'selected': ( - 'background': $color-tag-selectable-light-selected-background, - 'text': $color-tag-selectable-light-selected-text, - 'hover': ( - 'background': $color-tag-selectable-light-selected-hover-background - ) - ) - ), - 'dark': ( - 'background': $color-tag-selectable-dark-background, - 'border': $color-tag-selectable-dark-border, - 'text': $color-tag-selectable-dark-text, - 'hover': ( - 'background': $color-tag-selectable-dark-hover-background - ), - 'active': ( - 'background': $color-tag-selectable-dark-active-background, - 'border': $color-tag-selectable-dark-active-border, - 'text': $color-tag-selectable-dark-active-text - ), - 'selected': ( - 'background': $color-tag-selectable-dark-selected-background, - 'border': $color-tag-selectable-dark-selected-border, - 'text': $color-tag-selectable-dark-selected-text, - 'hover': ( - 'background': $color-tag-selectable-dark-selected-hover-background - ) - ), - 'disabled': ( - 'background': $color-tag-selectable-dark-disabled-background, - 'text': $color-tag-selectable-dark-disabled-text - ) - ) - ), - 'removable': ( - 'light': ( - 'background': $color-tag-removable-light-background, - 'text': $color-tag-removable-light-text, - 'icon': $color-tag-removable-light-icon, - 'hover': ( - 'background': $color-tag-removable-light-hover-background - ), - 'active': ( - 'background': $color-tag-removable-light-active-background - ) - ), - 'dark': ( - 'background': $color-tag-removable-dark-background, - 'text': $color-tag-removable-dark-text, - 'icon': $color-tag-removable-dark-icon, - 'hover': ( - 'background': $color-tag-removable-dark-hover-background - ), - 'active': ( - 'background': $color-tag-removable-dark-active-background - ) - ) - ) - ), - 'toggle': ( - 'label': $color-toggle-label, - 'off': ( - 'background': $color-toggle-off-background, - 'circle': $color-toggle-off-circle - ), - 'on': ( - 'background': $color-toggle-on-background, - 'circle': $color-toggle-on-circle - ), - 'hover': ( - 'circle': $color-toggle-hover-circle - ), - 'disabled': ( - 'background': $color-toggle-disabled-background, - 'circle': $color-toggle-disabled-circle, - 'label': $color-toggle-disabled-label - ), - 'disabled-checked': ( - 'background': $color-toggle-disabled-checked-background, - 'circle': $color-toggle-disabled-checked-circle - ) - ), - 'tooltip': ( - 'background': $color-tooltip-background, - 'border': $color-tooltip-border - ), - 'secondary-sandgrey': ( - '100': $color-secondary-sandgrey-100, - '200': $color-secondary-sandgrey-200, - '300': $color-secondary-sandgrey-300, - '400': $color-secondary-sandgrey-400, - '500': $color-secondary-sandgrey-500, - '600': $color-secondary-sandgrey-600, - '700': $color-secondary-sandgrey-700, - '800': $color-secondary-sandgrey-800, - '900': $color-secondary-sandgrey-900 - ) - ), - 'font': ( - 'family': $font-family, - 'weight': ( - 'light': $font-weight-light, - 'regular': $font-weight-regular, - 'semi-bold': $font-weight-semi-bold - ) - ), - 'preset': $preset, - 'radius': ( - 's': $radius-s, - 'm': $radius-m, - 'l': $radius-l - ), - 'shadow': ( - 's': ( - 'x': $shadow-s-x, - 'y': $shadow-s-y, - 'blur': $shadow-s-blur, - 'spread': $shadow-s-spread, - 'opacity': $shadow-s-opacity - ), - 'm': ( - 'x': $shadow-m-x, - 'y': $shadow-m-y, - 'blur': $shadow-m-blur, - 'spread': $shadow-m-spread, - 'opacity': $shadow-m-opacity - ), - 'l': ( - 'x': $shadow-l-x, - 'y': $shadow-l-y, - 'blur': $shadow-l-blur, - 'spread': $shadow-l-spread, - 'opacity': $shadow-l-opacity - ) - ), - 'magic-unit': $magic-unit, - 'local-rem-value': $local-rem-value, - 'size': ( - 'font': ( - '10': $size-font-10, - '11': $size-font-11, - '12': $size-font-12, - '01': $size-font-01, - '02': $size-font-02, - '03': $size-font-03, - '04': $size-font-04, - '05': $size-font-05, - '06': $size-font-06, - '07': $size-font-07, - '08': $size-font-08, - '09': $size-font-09 - ), - 'line': ( - '10': ( - 'xs': $size-line-10-xs, - 's': $size-line-10-s, - 'm': $size-line-10-m, - 'l': $size-line-10-l - ), - '11': ( - 'xs': $size-line-11-xs, - 's': $size-line-11-s, - 'm': $size-line-11-m, - 'l': $size-line-11-l - ), - '12': ( - 'xs': $size-line-12-xs, - 's': $size-line-12-s, - 'm': $size-line-12-m, - 'l': $size-line-12-l - ), - '01': ( - 'xs': $size-line-01-xs, - 's': $size-line-01-s, - 'm': $size-line-01-m, - 'l': $size-line-01-l - ), - '02': ( - 'xs': $size-line-02-xs, - 's': $size-line-02-s, - 'm': $size-line-02-m, - 'l': $size-line-02-l - ), - '03': ( - 'xs': $size-line-03-xs, - 's': $size-line-03-s, - 'm': $size-line-03-m, - 'l': $size-line-03-l - ), - '04': ( - 'xs': $size-line-04-xs, - 's': $size-line-04-s, - 'm': $size-line-04-m, - 'l': $size-line-04-l - ), - '05': ( - 'xs': $size-line-05-xs, - 's': $size-line-05-s, - 'm': $size-line-05-m, - 'l': $size-line-05-l - ), - '06': ( - 'xs': $size-line-06-xs, - 's': $size-line-06-s, - 'm': $size-line-06-m, - 'l': $size-line-06-l - ), - '07': ( - 'xs': $size-line-07-xs, - 's': $size-line-07-s, - 'm': $size-line-07-m, - 'l': $size-line-07-l - ), - '08': ( - 'xs': $size-line-08-xs, - 's': $size-line-08-s, - 'm': $size-line-08-m, - 'l': $size-line-08-l - ), - '09': ( - 'xs': $size-line-09-xs, - 's': $size-line-09-s, - 'm': $size-line-09-m, - 'l': $size-line-09-l - ) - ), - 'gutter': ( - 'screen': ( - 's': $size-gutter-screen-s, - 'm': $size-gutter-screen-m - ) - ) - ), - 'screen': ( - 's': $screen-s, - 's-medium': $screen-s-medium, - 's-large': $screen-s-large, - 's-xlarge': $screen-s-xlarge, - 'm': $screen-m, - 'm-medium': $screen-m-medium, - 'l': $screen-l, - 'l-medium': $screen-l-medium, - 'xl': $screen-xl, - 'xl-medium': $screen-xl-medium, - 'xl-large': $screen-xl-large, - 'xxl': $screen-xxl - ) -); diff --git a/packages/tokens/build/android/colors.xml b/packages/tokens/build/android/colors.xml new file mode 100644 index 000000000..44f86d1c1 --- /dev/null +++ b/packages/tokens/build/android/colors.xml @@ -0,0 +1,473 @@ + + + + + #ffdaeff7 + #ff0b96cc + #ff005c91 + #ffebf5de + #ff46a610 + #ff006902 + #fffdf1e8 + #ffea7315 + #ff8c3500 + #fffdeaea + #ffea302d + #ff8c0003 + #ffe6e6e6 + #ff808080 + #ff4d4d4d + #ffebf5de + #ffc5e39e + #ff9ed05f + #ff78be20 + #ff46a610 + #ff188803 + #ff006902 + #ff035010 + #ff023618 + #ffeeeff1 + #ffcfd2d8 + #ffb3b7c1 + #ff8f94a3 + #ff6a7081 + #ff494f60 + #ff343b4c + #ff242938 + #ff171b26 + #ffe6e6e6 + #ffcccccc + #ffb3b3b3 + #ff999999 + #ff808080 + #ff666666 + #ff4d4d4d + #ff333333 + #ff191919 + #ff000000 + #ffffffff + #ffdaeff7 + #ffa7d9ed + #ff73c3e2 + #ff3facd7 + #ff0b96cc + #ff007bb4 + #ff005c91 + #ff003a5c + #ff002a41 + #ffebf5de + #ffc5e39e + #ff9ed05f + #ff78be20 + #ff46a610 + #ff188803 + #ff006902 + #ff035010 + #ff023618 + #ffefebfe + #ffc7b0fa + #ffa575f3 + #ff883be9 + #ff7000dd + #ff5803b3 + #ff42058a + #ff2e0663 + #ff1c053d + #fffdeaea + #fff8bcbb + #fff38d8c + #ffef5f5c + #ffea302d + #ffc61112 + #ff8c0003 + #ff530000 + #ff2d0000 + #fffdf1e8 + #fff8d2b3 + #fff4b27e + #ffef934a + #ffea7315 + #ffc65200 + #ff8c3500 + #ff531b00 + #ff360e00 + #fffff8e2 + #ffffebaf + #fffee07d + #fffcd64c + #fff8cc1c + #ffc9a21b + #ff9c7b18 + #ff705613 + #ff46350d + #fffdeaea + #fff8bcbb + #fff38d8c + #ffef5f5c + #ffea302d + #ffc61112 + #ff8c0003 + #ff530000 + #ff2d0000 + #ffdaeff7 + #ffa7d9ed + #ff73c3e2 + #ff3facd7 + #ff0b96cc + #ff007bb4 + #ff005c91 + #ff003a5c + #ff002a41 + #fffdf1e8 + #fff8d2b3 + #fff4b27e + #ffef934a + #ffea7315 + #ffc65200 + #ff8c3500 + #ff531b00 + #ff360e00 + #ffebf5de + #ffc5e39e + #ff9ed05f + #ff78be20 + #ff46a610 + #ff188803 + #ff006902 + #ff035010 + #ff023618 + #ff333333 + #ffffffff + #ff188803 + #ffffffff + #ff006902 + #ffcccccc + #ff666666 + #ff006902 + #ff006902 + #ffffffff + #ff6a7081 + #ffffffff + #ff171b26 + #ffcccccc + #ff666666 + #ff171b26 + #ff242938 + #ffffffff + #ff333333 + #ffffffff + #ff191919 + #ffcccccc + #ff666666 + #ff333333 + #ff191919 + #ffffffff + #ffc61112 + #ffffffff + #ff8c0003 + #ffcccccc + #ff666666 + #ff8c0003 + #ff8c0003 + #ffffffff + #ffffffff + #ff188803 + #ff188803 + #ff006902 + #ffcccccc + #ff666666 + #ffc5e39e + #ff035010 + #ffebf5de + #ff006902 + #ffffffff + #ff6a7081 + #ff6a7081 + #ff171b26 + #ffcccccc + #ff666666 + #ffcfd2d8 + #ffeeeff1 + #ffffffff + #ff333333 + #ff333333 + #ff191919 + #ffcccccc + #ff666666 + #ffcccccc + #ffe6e6e6 + #ffffffff + #ffc61112 + #ffc61112 + #ff8c0003 + #ffcccccc + #ff666666 + #fff8bcbb + #ff530000 + #fffdeaea + #ff8c0003 + #ffffffff + #ff808080 + #ffb3b3b3 + #ffe6e6e6 + #ff191919 + #ffcccccc + #ff333333 + #ff191919 + #ffe6e6e6 + #ffebf5de + #ffe6e6e6 + #ffb3b3b3 + #ff000000 + #ff46a610 + #ffe6e6e6 + #ff666666 + #ffffffff + #ff666666 + #ff808080 + #ff191919 + #ffffffff + #ffb3b3b3 + #ff666666 + #ff000000 + #ffc61112 + #ff333333 + #ff666666 + #ff666666 + #ff000000 + #ffe6e6e6 + #ffcccccc + #ff46a610 + #ffc61112 + #ff188803 + #ff188803 + #ffffffff + #ff494f60 + #ff494f60 + #ffffffff + #ff000000 + #ff000000 + #ffffffff + #ffffffff + #ffffffff + #ff000000 + #ffc61112 + #ffc61112 + #ffffffff + #ffffffff + #ff188803 + #ff188803 + #ffffffff + #ff494f60 + #ff494f60 + #ffffffff + #ff000000 + #ff000000 + #ff000000 + #ffffffff + #ffffffff + #ffffffff + #ffc61112 + #ffc61112 + #ffffffff + #ff0b96cc + #ff188803 + #ff6a7081 + #ff000000 + #ff191919 + #ff333333 + #ff666666 + #ffffffff + #ff007bb4 + #ff188803 + #ffc65200 + #ffc61112 + #ff46a610 + #ffc5e39e + #ff191919 + #ff191919 + #ff666666 + #ff666666 + #ffffffff + #ffe6e6e6 + #ffe6e6e6 + #ff999999 + #ff808080 + #ff191919 + #ff0b96cc + #ff46a610 + #ff035010 + #ffc61112 + #ff530000 + #ff46a610 + #ff46a610 + #ffffffff + #ff035010 + #ff000000 + #ff333333 + #ff333333 + #ffe6e6e6 + #ff666666 + #ffffffff + #ffcccccc + #ffcccccc + #ffe6e6e6 + #ff999999 + #ff188803 + #ff006902 + #ff006902 + #ffe6e6e6 + #ff035010 + #ff494f60 + #ff343b4c + #ff343b4c + #ffe6e6e6 + #ff171b26 + #ffc61112 + #ff8c0003 + #ff8c0003 + #ffe6e6e6 + #ff530000 + #ffffffff + #ff666666 + #ffb3b3b3 + #ff191919 + #ffe6e6e6 + #ffcccccc + #ff000000 + #ffdaeff7 + #ff0b96cc + #ff007bb4 + #ffebf5de + #ff46a610 + #ff188803 + #fffdf1e8 + #ffea7315 + #ffc65200 + #fffdeaea + #ffea302d + #ffc61112 + #ffb3b3b3 + #ff333333 + #ff46a610 + #ffebf5de + #ffcccccc + #ffb3b3b3 + #ff333333 + #ff46a610 + #ffebf5de + #ffcccccc + #ff666666 + #ff191919 + #ff191919 + #ffe6e6e6 + #ff666666 + #ffffffff + #ffb3b3b3 + #ffe6e6e6 + #ffcccccc + #ff188803 + #ff191919 + #ffffffff + #ffeeeff1 + #ffcfd2d8 + #ffb3b7c1 + #ffcfd2d8 + #ff6a7081 + #ffcfd2d8 + #ffb3b3b3 + #ff191919 + #ffe6e6e6 + #ff191919 + #ffb3b3b3 + #ff8f94a3 + #ffffffff + #ff0b96cc + #ffea7315 + #fff4b27e + #ff999999 + #ff46a610 + #ff46a610 + #ffffffff + #ff999999 + #ff46a610 + #ff46a610 + #ff46a610 + #ff46a610 + #ffffffff + #ff000000 + #ff666666 + #ffeeeff1 + #ff035010 + #ffcccccc + #ffcfd2d8 + #ff333333 + #ff000000 + #ff000000 + #ffc5e39e + #ffffffff + #ff808080 + #ff191919 + #ff191919 + #ffffffff + #ffffffff + #ffffffff + #ff808080 + #ff191919 + #ffe6e6e6 + #ffcccccc + #ff191919 + #ffffffff + #ffffffff + #ff333333 + #ff4d4d4d + #ffffffff + #ff808080 + #ff191919 + #ff9ed05f + #ff035010 + #ff035010 + #ffffffff + #ffe6e6e6 + #ff808080 + #ff188803 + #ffffffff + #ff006902 + #ff191919 + #ffffffff + #ffffffff + #ff006902 + #ffc5e39e + #ffc5e39e + #ff191919 + #ff78be20 + #ff78be20 + #ff191919 + #ff9ed05f + #ff4d4d4d + #ff808080 + #ff333333 + #ffffffff + #ffcccccc + #ff4d4d4d + #ff666666 + #ffcccccc + #ff191919 + #ff191919 + #ffb3b3b3 + #ff999999 + #ff000000 + #ff666666 + #ffffffff + #ff46a610 + #ffffffff + #ffe6e6e6 + #ffe6e6e6 + #ffb3b3b3 + #ff808080 + #ffc5e39e + #ffffffff + #ff4d4d4d + #ffffffff + + diff --git a/packages/tokens/build/android/font_dimens.xml b/packages/tokens/build/android/font_dimens.xml new file mode 100644 index 000000000..27a7457de --- /dev/null +++ b/packages/tokens/build/android/font_dimens.xml @@ -0,0 +1,18 @@ + + + + + 41.00sp + 49.00sp + 59.00sp + 10.90sp + 12.00sp + 13.00sp + 14.00sp + 16.00sp + 18.00sp + 23.00sp + 28.00sp + 34.00sp + + diff --git a/packages/tokens/build/bricoman/css/_variables.scss b/packages/tokens/build/bricoman/css/_variables.scss deleted file mode 100644 index 53ddca401..000000000 --- a/packages/tokens/build/bricoman/css/_variables.scss +++ /dev/null @@ -1,456 +0,0 @@ -$color-badge-info-background: var(--color-badge-info-background, #daeff7); -$color-badge-info-border: var(--color-badge-info-border, #0b96cc); -$color-badge-info-text: var(--color-badge-info-text, #005c91); -$color-badge-success-background: var(--color-badge-success-background, #ebf5de); -$color-badge-success-border: var(--color-badge-success-border, #46a610); -$color-badge-success-text: var(--color-badge-success-text, #006902); -$color-badge-warning-background: var(--color-badge-warning-background, #fdf1e8); -$color-badge-warning-border: var(--color-badge-warning-border, #ea7315); -$color-badge-warning-text: var(--color-badge-warning-text, #8c3500); -$color-badge-danger-background: var(--color-badge-danger-background, #fdeaea); -$color-badge-danger-border: var(--color-badge-danger-border, #ea302d); -$color-badge-danger-text: var(--color-badge-danger-text, #8c0003); -$color-badge-neutral-background: var(--color-badge-neutral-background, #e6e6e6); -$color-badge-neutral-border: var(--color-badge-neutral-border, #808080); -$color-badge-neutral-text: var(--color-badge-neutral-text, #4d4d4d); -$color-primary-01-100: var(--color-primary-01-100, #e5e7fa); -$color-primary-01-200: var(--color-primary-01-200, #b8bef4); -$color-primary-01-300: var(--color-primary-01-300, #8792ed); -$color-primary-01-400: var(--color-primary-01-400, #6875e8); -$color-primary-01-500: var(--color-primary-01-500, #4d5bf5); -$color-primary-01-600: var(--color-primary-01-600, #373de7); -$color-primary-01-700: var(--color-primary-01-700, #161cb6); -$color-primary-01-800: var(--color-primary-01-800, #130f7b); -$color-primary-01-900: var(--color-primary-01-900, #120949); -$color-primary-02-100: var(--color-primary-02-100, #ffe1d1); -$color-primary-02-200: var(--color-primary-02-200, #ffab80); -$color-primary-02-300: var(--color-primary-02-300, #ff7933); -$color-primary-02-400: var(--color-primary-02-400, #ff5800); -$color-primary-02-500: var(--color-primary-02-500, #e54f00); -$color-primary-02-600: var(--color-primary-02-600, #b83f00); -$color-primary-02-700: var(--color-primary-02-700, #943300); -$color-primary-02-800: var(--color-primary-02-800, #702700); -$color-primary-02-900: var(--color-primary-02-900, #421700); -$color-grey-100: var(--color-grey-100, #e6e6e6); -$color-grey-200: var(--color-grey-200, #cccccc); -$color-grey-300: var(--color-grey-300, #b3b3b3); -$color-grey-400: var(--color-grey-400, #999999); -$color-grey-500: var(--color-grey-500, #808080); -$color-grey-600: var(--color-grey-600, #666666); -$color-grey-700: var(--color-grey-700, #4d4d4d); -$color-grey-800: var(--color-grey-800, #333333); -$color-grey-900: var(--color-grey-900, #191919); -$color-grey-999: var(--color-grey-999, #000000); -$color-grey-000: var(--color-grey-000, #ffffff); -$color-secondary-blue-100: var(--color-secondary-blue-100, #daeff7); -$color-secondary-blue-200: var(--color-secondary-blue-200, #a7d9ed); -$color-secondary-blue-300: var(--color-secondary-blue-300, #73c3e2); -$color-secondary-blue-400: var(--color-secondary-blue-400, #3facd7); -$color-secondary-blue-500: var(--color-secondary-blue-500, #0b96cc); -$color-secondary-blue-600: var(--color-secondary-blue-600, #007bb4); -$color-secondary-blue-700: var(--color-secondary-blue-700, #005c91); -$color-secondary-blue-800: var(--color-secondary-blue-800, #003a5c); -$color-secondary-blue-900: var(--color-secondary-blue-900, #002a41); -$color-secondary-green-100: var(--color-secondary-green-100, #e5e7fa); -$color-secondary-green-200: var(--color-secondary-green-200, #b8bef4); -$color-secondary-green-300: var(--color-secondary-green-300, #8792ed); -$color-secondary-green-400: var(--color-secondary-green-400, #6875e8); -$color-secondary-green-500: var(--color-secondary-green-500, #4d5bf5); -$color-secondary-green-600: var(--color-secondary-green-600, #373de7); -$color-secondary-green-700: var(--color-secondary-green-700, #161cb6); -$color-secondary-green-800: var(--color-secondary-green-800, #130f7b); -$color-secondary-green-900: var(--color-secondary-green-900, #120949); -$color-secondary-purple-100: var(--color-secondary-purple-100, #efebfe); -$color-secondary-purple-200: var(--color-secondary-purple-200, #c7b0fa); -$color-secondary-purple-300: var(--color-secondary-purple-300, #a575f3); -$color-secondary-purple-400: var(--color-secondary-purple-400, #883be9); -$color-secondary-purple-500: var(--color-secondary-purple-500, #7000dd); -$color-secondary-purple-600: var(--color-secondary-purple-600, #5803b3); -$color-secondary-purple-700: var(--color-secondary-purple-700, #42058a); -$color-secondary-purple-800: var(--color-secondary-purple-800, #2e0663); -$color-secondary-purple-900: var(--color-secondary-purple-900, #1c053d); -$color-secondary-red-100: var(--color-secondary-red-100, #fdeaea); -$color-secondary-red-200: var(--color-secondary-red-200, #f8bcbb); -$color-secondary-red-300: var(--color-secondary-red-300, #f38d8c); -$color-secondary-red-400: var(--color-secondary-red-400, #ef5f5c); -$color-secondary-red-500: var(--color-secondary-red-500, #ea302d); -$color-secondary-red-600: var(--color-secondary-red-600, #c61112); -$color-secondary-red-700: var(--color-secondary-red-700, #8c0003); -$color-secondary-red-800: var(--color-secondary-red-800, #530000); -$color-secondary-red-900: var(--color-secondary-red-900, #2d0000); -$color-secondary-orange-100: var(--color-secondary-orange-100, #fdf1e8); -$color-secondary-orange-200: var(--color-secondary-orange-200, #f8d2b3); -$color-secondary-orange-300: var(--color-secondary-orange-300, #f4b27e); -$color-secondary-orange-400: var(--color-secondary-orange-400, #ef934a); -$color-secondary-orange-500: var(--color-secondary-orange-500, #ea7315); -$color-secondary-orange-600: var(--color-secondary-orange-600, #c65200); -$color-secondary-orange-700: var(--color-secondary-orange-700, #8c3500); -$color-secondary-orange-800: var(--color-secondary-orange-800, #531b00); -$color-secondary-orange-900: var(--color-secondary-orange-900, #360e00); -$color-secondary-yellow-100: var(--color-secondary-yellow-100, #fff8e2); -$color-secondary-yellow-200: var(--color-secondary-yellow-200, #ffebaf); -$color-secondary-yellow-300: var(--color-secondary-yellow-300, #fee07d); -$color-secondary-yellow-400: var(--color-secondary-yellow-400, #fcd64c); -$color-secondary-yellow-500: var(--color-secondary-yellow-500, #f8cc1c); -$color-secondary-yellow-600: var(--color-secondary-yellow-600, #c9a21b); -$color-secondary-yellow-700: var(--color-secondary-yellow-700, #9c7b18); -$color-secondary-yellow-800: var(--color-secondary-yellow-800, #705613); -$color-secondary-yellow-900: var(--color-secondary-yellow-900, #46350d); -$color-danger-100: var(--color-danger-100, #fdeaea); -$color-danger-200: var(--color-danger-200, #f8bcbb); -$color-danger-300: var(--color-danger-300, #f38d8c); -$color-danger-400: var(--color-danger-400, #ef5f5c); -$color-danger-500: var(--color-danger-500, #ea302d); -$color-danger-600: var(--color-danger-600, #c61112); -$color-danger-700: var(--color-danger-700, #8c0003); -$color-danger-800: var(--color-danger-800, #530000); -$color-danger-900: var(--color-danger-900, #2d0000); -$color-info-100: var(--color-info-100, #daeff7); -$color-info-200: var(--color-info-200, #a7d9ed); -$color-info-300: var(--color-info-300, #73c3e2); -$color-info-400: var(--color-info-400, #3facd7); -$color-info-500: var(--color-info-500, #0b96cc); -$color-info-600: var(--color-info-600, #007bb4); -$color-info-700: var(--color-info-700, #005c91); -$color-info-800: var(--color-info-800, #003a5c); -$color-info-900: var(--color-info-900, #002a41); -$color-warning-100: var(--color-warning-100, #fdf1e8); -$color-warning-200: var(--color-warning-200, #f8d2b3); -$color-warning-300: var(--color-warning-300, #f4b27e); -$color-warning-400: var(--color-warning-400, #ef934a); -$color-warning-500: var(--color-warning-500, #ea7315); -$color-warning-600: var(--color-warning-600, #c65200); -$color-warning-700: var(--color-warning-700, #8c3500); -$color-warning-800: var(--color-warning-800, #531b00); -$color-warning-900: var(--color-warning-900, #360e00); -$color-success-100: var(--color-success-100, #ebf5de); -$color-success-200: var(--color-success-200, #c5e39e); -$color-success-300: var(--color-success-300, #9ed05f); -$color-success-400: var(--color-success-400, #78be20); -$color-success-500: var(--color-success-500, #46a610); -$color-success-600: var(--color-success-600, #188803); -$color-success-700: var(--color-success-700, #006902); -$color-success-800: var(--color-success-800, #035010); -$color-success-900: var(--color-success-900, #023618); -$color-breadcrumb-arrow: var(--color-breadcrumb-arrow, #333333); -$color-breadcrumb-arrow-invert: var(--color-breadcrumb-arrow-invert, #ffffff); -$color-button-solid-background: var(--color-button-solid-background, #120949); -$color-button-solid-font: var(--color-button-solid-font, #ffffff); -$color-button-solid-focus-border: var(--color-button-solid-focus-border, #161cb6); -$color-button-solid-disabled-background: var(--color-button-solid-disabled-background, #cccccc); -$color-button-solid-disabled-font: var(--color-button-solid-disabled-font, #666666); -$color-button-solid-active-background: var(--color-button-solid-active-background, #161cb6); -$color-button-solid-hover-background: var(--color-button-solid-hover-background, #161cb6); -$color-button-solid-hover-font: var(--color-button-solid-hover-font, #ffffff); -$color-button-solid-primary-02-background: var(--color-button-solid-primary-02-background, #ff5800); -$color-button-solid-primary-02-font: var(--color-button-solid-primary-02-font, #ffffff); -$color-button-solid-primary-02-focus-border: var(--color-button-solid-primary-02-focus-border, #421700); -$color-button-solid-primary-02-disabled-background: var(--color-button-solid-primary-02-disabled-background, #cccccc); -$color-button-solid-primary-02-disabled-font: var(--color-button-solid-primary-02-disabled-font, #666666); -$color-button-solid-primary-02-active-background: var(--color-button-solid-primary-02-active-background, #421700); -$color-button-solid-primary-02-hover-background: var(--color-button-solid-primary-02-hover-background, #b83f00); -$color-button-solid-primary-02-hover-font: var(--color-button-solid-primary-02-hover-font, #ffffff); -$color-button-solid-neutral-background: var(--color-button-solid-neutral-background, #333333); -$color-button-solid-neutral-font: var(--color-button-solid-neutral-font, #ffffff); -$color-button-solid-neutral-focus-border: var(--color-button-solid-neutral-focus-border, #191919); -$color-button-solid-neutral-disabled-background: var(--color-button-solid-neutral-disabled-background, #cccccc); -$color-button-solid-neutral-disabled-font: var(--color-button-solid-neutral-disabled-font, #666666); -$color-button-solid-neutral-active-background: var(--color-button-solid-neutral-active-background, #333333); -$color-button-solid-neutral-hover-background: var(--color-button-solid-neutral-hover-background, #191919); -$color-button-solid-neutral-hover-font: var(--color-button-solid-neutral-hover-font, #ffffff); -$color-button-solid-danger-background: var(--color-button-solid-danger-background, #c61112); -$color-button-solid-danger-font: var(--color-button-solid-danger-font, #ffffff); -$color-button-solid-danger-focus-border: var(--color-button-solid-danger-focus-border, #8c0003); -$color-button-solid-danger-disabled-background: var(--color-button-solid-danger-disabled-background, #cccccc); -$color-button-solid-danger-disabled-font: var(--color-button-solid-danger-disabled-font, #666666); -$color-button-solid-danger-active-background: var(--color-button-solid-danger-active-background, #8c0003); -$color-button-solid-danger-hover-background: var(--color-button-solid-danger-hover-background, #8c0003); -$color-button-solid-danger-hover-font: var(--color-button-solid-danger-hover-font, #ffffff); -$color-button-bordered-background: var(--color-button-bordered-background, #ffffff); -$color-button-bordered-border: var(--color-button-bordered-border, #120949); -$color-button-bordered-font: var(--color-button-bordered-font, #120949); -$color-button-bordered-focus-border: var(--color-button-bordered-focus-border, #161cb6); -$color-button-bordered-disabled-background: var(--color-button-bordered-disabled-background, #cccccc); -$color-button-bordered-disabled-font: var(--color-button-bordered-disabled-font, #666666); -$color-button-bordered-active-background: var(--color-button-bordered-active-background, #b8bef4); -$color-button-bordered-active-font: var(--color-button-bordered-active-font, #130f7b); -$color-button-bordered-hover-background: var(--color-button-bordered-hover-background, #e5e7fa); -$color-button-bordered-hover-font: var(--color-button-bordered-hover-font, #161cb6); -$color-button-bordered-primary-02-background: var(--color-button-bordered-primary-02-background, #ffffff); -$color-button-bordered-primary-02-border: var(--color-button-bordered-primary-02-border, #ff5800); -$color-button-bordered-primary-02-font: var(--color-button-bordered-primary-02-font, #ff5800); -$color-button-bordered-primary-02-focus-border: var(--color-button-bordered-primary-02-focus-border, #421700); -$color-button-bordered-primary-02-disabled-background: var(--color-button-bordered-primary-02-disabled-background, #cccccc); -$color-button-bordered-primary-02-disabled-font: var(--color-button-bordered-primary-02-disabled-font, #666666); -$color-button-bordered-primary-02-active-background: var(--color-button-bordered-primary-02-active-background, #ffab80); -$color-button-bordered-primary-02-hover-background: var(--color-button-bordered-primary-02-hover-background, #ffe1d1); -$color-button-bordered-neutral-background: var(--color-button-bordered-neutral-background, #ffffff); -$color-button-bordered-neutral-border: var(--color-button-bordered-neutral-border, #333333); -$color-button-bordered-neutral-font: var(--color-button-bordered-neutral-font, #333333); -$color-button-bordered-neutral-focus-border: var(--color-button-bordered-neutral-focus-border, #191919); -$color-button-bordered-neutral-disabled-background: var(--color-button-bordered-neutral-disabled-background, #cccccc); -$color-button-bordered-neutral-disabled-font: var(--color-button-bordered-neutral-disabled-font, #666666); -$color-button-bordered-neutral-active-background: var(--color-button-bordered-neutral-active-background, #cccccc); -$color-button-bordered-neutral-hover-background: var(--color-button-bordered-neutral-hover-background, #e6e6e6); -$color-button-bordered-danger-background: var(--color-button-bordered-danger-background, #ffffff); -$color-button-bordered-danger-border: var(--color-button-bordered-danger-border, #c61112); -$color-button-bordered-danger-font: var(--color-button-bordered-danger-font, #c61112); -$color-button-bordered-danger-focus-border: var(--color-button-bordered-danger-focus-border, #8c0003); -$color-button-bordered-danger-disabled-background: var(--color-button-bordered-danger-disabled-background, #cccccc); -$color-button-bordered-danger-disabled-font: var(--color-button-bordered-danger-disabled-font, #666666); -$color-button-bordered-danger-active-background: var(--color-button-bordered-danger-active-background, #f8bcbb); -$color-button-bordered-danger-active-font: var(--color-button-bordered-danger-active-font, #530000); -$color-button-bordered-danger-hover-background: var(--color-button-bordered-danger-hover-background, #fdeaea); -$color-button-bordered-danger-hover-font: var(--color-button-bordered-danger-hover-font, #8c0003); -$color-card-bordered-background: var(--color-card-bordered-background, #ffffff); -$color-card-bordered-border: var(--color-card-bordered-border, #808080); -$color-datatable-filters-border: var(--color-datatable-filters-border, #b3b3b3); -$color-datatable-container-background: var(--color-datatable-container-background, #e6e6e6); -$color-datatable-thead-font: var(--color-datatable-thead-font, #191919); -$color-datatable-sort-arrow-default: var(--color-datatable-sort-arrow-default, #cccccc); -$color-datatable-sort-arrow-active: var(--color-datatable-sort-arrow-active, #333333); -$color-datatable-cell-font: var(--color-datatable-cell-font, #191919); -$color-datatable-cell-background-hover: var(--color-datatable-cell-background-hover, #e6e6e6); -$color-datatable-cell-background-selected: var(--color-datatable-cell-background-selected, #e5e7fa); -$color-datatable-subtable-background: var(--color-datatable-subtable-background, #e6e6e6); -$color-datatable-subtable-border: var(--color-datatable-subtable-border, #b3b3b3); -$color-datatable-subtable-font: var(--color-datatable-subtable-font, #000000); -$color-datatable-icon: var(--color-datatable-icon, #4d5bf5); -$color-dialog-background: var(--color-dialog-background, #ffffff); -$color-dialog-icon: var(--color-dialog-icon, #666666); -$color-dialog-close: var(--color-dialog-close, #808080); -$color-dialog-footer-shadow: var(--color-dialog-footer-shadow, #191919); -$color-divider-lightest: var(--color-divider-lightest, #ffffff); -$color-divider-light: var(--color-divider-light, #b3b3b3); -$color-divider-default: var(--color-divider-default, #666666); -$color-divider-dark: var(--color-divider-dark, #000000); -$color-fields-error: var(--color-fields-error, #c61112); -$color-fields-label: var(--color-fields-label, #333333); -$color-fields-requirement: var(--color-fields-requirement, #666666); -$color-fields-help: var(--color-fields-help, #666666); -$color-fileuploader-font: var(--color-fileuploader-font, #000000); -$color-fileuploader-files-list: var(--color-fileuploader-files-list, #e6e6e6); -$color-fileuploader-files-delete: var(--color-fileuploader-files-delete, #cccccc); -$color-fileuploader-valid: var(--color-fileuploader-valid, #4d5bf5); -$color-fileuploader-alert: var(--color-fileuploader-alert, #c61112); -$color-flag-solid-background: var(--color-flag-solid-background, #373de7); -$color-flag-solid-border: var(--color-flag-solid-border, #373de7); -$color-flag-solid-text: var(--color-flag-solid-text, #ffffff); -$color-flag-solid-primary-02-background: var(--color-flag-solid-primary-02-background, #b83f00); -$color-flag-solid-primary-02-border: var(--color-flag-solid-primary-02-border, #b83f00); -$color-flag-solid-primary-02-text: var(--color-flag-solid-primary-02-text, #ffffff); -$color-flag-solid-dark-background: var(--color-flag-solid-dark-background, #000000); -$color-flag-solid-dark-border: var(--color-flag-solid-dark-border, #000000); -$color-flag-solid-dark-text: var(--color-flag-solid-dark-text, #ffffff); -$color-flag-solid-light-background: var(--color-flag-solid-light-background, #ffffff); -$color-flag-solid-light-border: var(--color-flag-solid-light-border, #ffffff); -$color-flag-solid-light-text: var(--color-flag-solid-light-text, #000000); -$color-flag-solid-danger-background: var(--color-flag-solid-danger-background, #c61112); -$color-flag-solid-danger-border: var(--color-flag-solid-danger-border, #c61112); -$color-flag-solid-danger-text: var(--color-flag-solid-danger-text, #ffffff); -$color-flag-bordered-background: var(--color-flag-bordered-background, #ffffff); -$color-flag-bordered-border: var(--color-flag-bordered-border, #373de7); -$color-flag-bordered-text: var(--color-flag-bordered-text, #373de7); -$color-flag-bordered-primary-02-background: var(--color-flag-bordered-primary-02-background, #ffffff); -$color-flag-bordered-primary-02-border: var(--color-flag-bordered-primary-02-border, #b83f00); -$color-flag-bordered-primary-02-text: var(--color-flag-bordered-primary-02-text, #b83f00); -$color-flag-bordered-dark-background: var(--color-flag-bordered-dark-background, #ffffff); -$color-flag-bordered-dark-border: var(--color-flag-bordered-dark-border, #000000); -$color-flag-bordered-dark-text: var(--color-flag-bordered-dark-text, #000000); -$color-flag-bordered-light-background: var(--color-flag-bordered-light-background, #000000); -$color-flag-bordered-light-border: var(--color-flag-bordered-light-border, #ffffff); -$color-flag-bordered-light-text: var(--color-flag-bordered-light-text, #ffffff); -$color-flag-bordered-danger-background: var(--color-flag-bordered-danger-background, #ffffff); -$color-flag-bordered-danger-border: var(--color-flag-bordered-danger-border, #c61112); -$color-flag-bordered-danger-text: var(--color-flag-bordered-danger-text, #c61112); -$color-focus-gap: var(--color-focus-gap, #ffffff); -$color-focus-border: var(--color-focus-border, #0b96cc); -$color-font-primary-01: var(--color-font-primary-01, #373de7); -$color-font-primary-02: var(--color-font-primary-02, #e54f00); -$color-font-darkest: var(--color-font-darkest, #000000); -$color-font-darker: var(--color-font-darker, #191919); -$color-font-dark: var(--color-font-dark, #333333); -$color-font-light: var(--color-font-light, #666666); -$color-font-lightest: var(--color-font-lightest, #ffffff); -$color-font-info: var(--color-font-info, #007bb4); -$color-font-success: var(--color-font-success, #188803); -$color-font-warning: var(--color-font-warning, #c65200); -$color-font-danger: var(--color-font-danger, #c61112); -$color-heading-underline-default: var(--color-heading-underline-default, #4d5bf5); -$color-heading-underline-lightest: var(--color-heading-underline-lightest, #b8bef4); -$color-heading-line-default: var(--color-heading-line-default, #ff5800); -$color-heading-line-lightest: var(--color-heading-line-lightest, #ffab80); -$color-hero-cover-background: var(--color-hero-cover-background, #191919); -$color-input-text: var(--color-input-text, #333333); -$color-input-border: var(--color-input-border, #808080); -$color-input-placeholder: var(--color-input-placeholder, #808080); -$color-input-background: var(--color-input-background, #ffffff); -$color-input-disabled-background: var(--color-input-disabled-background, #e6e6e6); -$color-input-disabled-border: var(--color-input-disabled-border, #e6e6e6); -$color-input-disabled-icon: var(--color-input-disabled-icon, #999999); -$color-input-disabled-label: var(--color-input-disabled-label, #808080); -$color-input-hover-border: var(--color-input-hover-border, #191919); -$color-input-focus-border: var(--color-input-focus-border, #0b96cc); -$color-input-valid-border: var(--color-input-valid-border, #46a610); -$color-input-valid-hover-border: var(--color-input-valid-hover-border, #035010); -$color-input-invalid-border: var(--color-input-invalid-border, #c61112); -$color-input-invalid-hover-border: var(--color-input-invalid-hover-border, #530000); -$color-input-checked-border: var(--color-input-checked-border, #ff5800); -$color-input-checked-background: var(--color-input-checked-background, #ff5800); -$color-input-checked-icon: var(--color-input-checked-icon, #ffffff); -$color-input-checked-hover-border: var(--color-input-checked-hover-border, #ff5800); -$color-link-dark-base: var(--color-link-dark-base, #000000); -$color-link-dark-visited: var(--color-link-dark-visited, #333333); -$color-link-dark-active: var(--color-link-dark-active, #333333); -$color-link-dark-disabled: var(--color-link-dark-disabled, #e6e6e6); -$color-link-dark-hover: var(--color-link-dark-hover, #666666); -$color-link-light-base: var(--color-link-light-base, #ffffff); -$color-link-light-visited: var(--color-link-light-visited, #cccccc); -$color-link-light-active: var(--color-link-light-active, #cccccc); -$color-link-light-disabled: var(--color-link-light-disabled, #e6e6e6); -$color-link-light-hover: var(--color-link-light-hover, #999999); -$color-link-primary-base: var(--color-link-primary-base, #ff5800); -$color-link-primary-visited: var(--color-link-primary-visited, #ff5800); -$color-link-primary-active: var(--color-link-primary-active, #ff5800); -$color-link-primary-disabled: var(--color-link-primary-disabled, #e6e6e6); -$color-link-primary-hover: var(--color-link-primary-hover, #b83f00); -$color-link-primary-02-base: var(--color-link-primary-02-base, #b83f00); -$color-link-primary-02-visited: var(--color-link-primary-02-visited, #943300); -$color-link-primary-02-active: var(--color-link-primary-02-active, #943300); -$color-link-primary-02-disabled: var(--color-link-primary-02-disabled, #e6e6e6); -$color-link-primary-02-hover: var(--color-link-primary-02-hover, #421700); -$color-link-danger-base: var(--color-link-danger-base, #c61112); -$color-link-danger-visited: var(--color-link-danger-visited, #8c0003); -$color-link-danger-active: var(--color-link-danger-active, #8c0003); -$color-link-danger-disabled: var(--color-link-danger-disabled, #e6e6e6); -$color-link-danger-hover: var(--color-link-danger-hover, #530000); -$color-listbox-background: var(--color-listbox-background, #ffffff); -$color-listbox-border: var(--color-listbox-border, #666666); -$color-listbox-tile-border: var(--color-listbox-tile-border, #b3b3b3); -$color-listbox-tile-shadow: var(--color-listbox-tile-shadow, #191919); -$color-listbox-tile-hover-background: var(--color-listbox-tile-hover-background, #e6e6e6); -$color-listbox-disabled-background: var(--color-listbox-disabled-background, #cccccc); -$color-notification-font: var(--color-notification-font, #000000); -$color-notification-information-background: var(--color-notification-information-background, #daeff7); -$color-notification-information-border: var(--color-notification-information-border, #0b96cc); -$color-notification-information-icon: var(--color-notification-information-icon, #007bb4); -$color-notification-success-background: var(--color-notification-success-background, #ebf5de); -$color-notification-success-border: var(--color-notification-success-border, #46a610); -$color-notification-success-icon: var(--color-notification-success-icon, #188803); -$color-notification-warning-background: var(--color-notification-warning-background, #fdf1e8); -$color-notification-warning-border: var(--color-notification-warning-border, #ea7315); -$color-notification-warning-icon: var(--color-notification-warning-icon, #c65200); -$color-notification-danger-background: var(--color-notification-danger-background, #fdeaea); -$color-notification-danger-border: var(--color-notification-danger-border, #ea302d); -$color-notification-danger-icon: var(--color-notification-danger-icon, #c61112); -$color-option-button-label-shadow: var(--color-option-button-label-shadow, #b3b3b3); -$color-option-button-hover-label-shadow: var(--color-option-button-hover-label-shadow, #333333); -$color-option-button-checked-label-border: var(--color-option-button-checked-label-border, #4d5bf5); -$color-option-button-checked-label-shadow: var(--color-option-button-checked-label-shadow, #e5e7fa); -$color-option-button-disabled-label-background: var(--color-option-button-disabled-label-background, #cccccc); -$color-option-card-label-shadow: var(--color-option-card-label-shadow, #b3b3b3); -$color-option-card-hover-label-shadow: var(--color-option-card-hover-label-shadow, #333333); -$color-option-card-checked-label-border: var(--color-option-card-checked-label-border, #4d5bf5); -$color-option-card-checked-label-shadow: var(--color-option-card-checked-label-shadow, #e5e7fa); -$color-option-card-disabled-content: var(--color-option-card-disabled-content, #cccccc); -$color-option-card-disabled-label: var(--color-option-card-disabled-label, #666666); -$color-overlay-background: var(--color-overlay-background, #191919); -$color-overlay-loader-background: var(--color-overlay-loader-background, #191919); -$color-password-input-button-hover-background: var(--color-password-input-button-hover-background, #e6e6e6); -$color-phone-number-button-border: var(--color-phone-number-button-border, #666666); -$color-phone-number-list-background: var(--color-phone-number-list-background, #ffffff); -$color-phone-number-item-border: var(--color-phone-number-item-border, #b3b3b3); -$color-phone-number-item-focus-background: var(--color-phone-number-item-focus-background, #e6e6e6); -$color-progress-background: var(--color-progress-background, #cccccc); -$color-progress-indicator: var(--color-progress-indicator, #007bb4); -$color-progress-percentage-default: var(--color-progress-percentage-default, #191919); -$color-progress-percentage-half: var(--color-progress-percentage-half, #ffffff); -$color-progress-branded-indicator: var(--color-progress-branded-indicator, #4d5bf5); -$color-star-empty: var(--color-star-empty, #ffffff); -$color-star-focus: var(--color-star-focus, #0b96cc); -$color-star-full: var(--color-star-full, #ea7315); -$color-star-hover: var(--color-star-hover, #f4b27e); -$color-stepper-item-background: var(--color-stepper-item-background, #999999); -$color-stepper-item-current-background: var(--color-stepper-item-current-background, #4d5bf5); -$color-stepper-link-hover-text: var(--color-stepper-link-hover-text, #4d5bf5); -$color-stepper-indicator-background: var(--color-stepper-indicator-background, #ffffff); -$color-stepper-indicator-border: var(--color-stepper-indicator-border, #999999); -$color-stepper-indicator-current-background: var(--color-stepper-indicator-current-background, #4d5bf5); -$color-stepper-indicator-current-border: var(--color-stepper-indicator-current-border, #4d5bf5); -$color-stepper-icon: var(--color-stepper-icon, #4d5bf5); -$color-stepper-title: var(--color-stepper-title, #4d5bf5); -$color-tabs-background: var(--color-tabs-background, #ffffff); -$color-tabs-shadow: var(--color-tabs-shadow, #000000); -$color-tabs-default: var(--color-tabs-default, #666666); -$color-tabs-element-background: var(--color-tabs-element-background, #ffe1d1); -$color-tabs-hover: var(--color-tabs-hover, #130f7b); -$color-tabs-disabled-background: var(--color-tabs-disabled-background, #cccccc); -$color-tabs-active-background: var(--color-tabs-active-background, #ffab80); -$color-tabs-active-text: var(--color-tabs-active-text, #333333); -$color-tabs-selected-border: var(--color-tabs-selected-border, #000000); -$color-tabs-selected-text: var(--color-tabs-selected-text, #000000); -$color-tabs-active-disabled: var(--color-tabs-active-disabled, #b8bef4); -$color-tag-text-light-background: var(--color-tag-text-light-background, #ffffff); -$color-tag-text-light-border: var(--color-tag-text-light-border, #808080); -$color-tag-text-light-text: var(--color-tag-text-light-text, #191919); -$color-tag-text-dark-background: var(--color-tag-text-dark-background, #191919); -$color-tag-text-dark-border: var(--color-tag-text-dark-border, #ffffff); -$color-tag-text-dark-text: var(--color-tag-text-dark-text, #ffffff); -$color-tag-link-light-background: var(--color-tag-link-light-background, #ffffff); -$color-tag-link-light-border: var(--color-tag-link-light-border, #808080); -$color-tag-link-light-text: var(--color-tag-link-light-text, #191919); -$color-tag-link-light-hover-background: var(--color-tag-link-light-hover-background, #e6e6e6); -$color-tag-link-light-active-background: var(--color-tag-link-light-active-background, #cccccc); -$color-tag-link-dark-background: var(--color-tag-link-dark-background, #191919); -$color-tag-link-dark-border: var(--color-tag-link-dark-border, #ffffff); -$color-tag-link-dark-text: var(--color-tag-link-dark-text, #ffffff); -$color-tag-link-dark-hover-background: var(--color-tag-link-dark-hover-background, #333333); -$color-tag-link-dark-active-background: var(--color-tag-link-dark-active-background, #4d4d4d); -$color-tag-selectable-light-background: var(--color-tag-selectable-light-background, #ffffff); -$color-tag-selectable-light-border: var(--color-tag-selectable-light-border, #808080); -$color-tag-selectable-light-text: var(--color-tag-selectable-light-text, #191919); -$color-tag-selectable-light-hover-background: var(--color-tag-selectable-light-hover-background, #8792ed); -$color-tag-selectable-light-active-background: var(--color-tag-selectable-light-active-background, #130f7b); -$color-tag-selectable-light-active-border: var(--color-tag-selectable-light-active-border, #130f7b); -$color-tag-selectable-light-active-text: var(--color-tag-selectable-light-active-text, #ffffff); -$color-tag-selectable-light-disabled-background: var(--color-tag-selectable-light-disabled-background, #e6e6e6); -$color-tag-selectable-light-disabled-text: var(--color-tag-selectable-light-disabled-text, #808080); -$color-tag-selectable-light-selected-background: var(--color-tag-selectable-light-selected-background, #373de7); -$color-tag-selectable-light-selected-text: var(--color-tag-selectable-light-selected-text, #ffffff); -$color-tag-selectable-light-selected-hover-background: var(--color-tag-selectable-light-selected-hover-background, #161cb6); -$color-tag-selectable-dark-background: var(--color-tag-selectable-dark-background, #191919); -$color-tag-selectable-dark-border: var(--color-tag-selectable-dark-border, #ffffff); -$color-tag-selectable-dark-text: var(--color-tag-selectable-dark-text, #ffffff); -$color-tag-selectable-dark-hover-background: var(--color-tag-selectable-dark-hover-background, #161cb6); -$color-tag-selectable-dark-active-background: var(--color-tag-selectable-dark-active-background, #b8bef4); -$color-tag-selectable-dark-active-border: var(--color-tag-selectable-dark-active-border, #b8bef4); -$color-tag-selectable-dark-active-text: var(--color-tag-selectable-dark-active-text, #191919); -$color-tag-selectable-dark-selected-background: var(--color-tag-selectable-dark-selected-background, #6875e8); -$color-tag-selectable-dark-selected-border: var(--color-tag-selectable-dark-selected-border, #6875e8); -$color-tag-selectable-dark-selected-text: var(--color-tag-selectable-dark-selected-text, #191919); -$color-tag-selectable-dark-selected-hover-background: var(--color-tag-selectable-dark-selected-hover-background, #8792ed); -$color-tag-selectable-dark-disabled-background: var(--color-tag-selectable-dark-disabled-background, #4d4d4d); -$color-tag-selectable-dark-disabled-text: var(--color-tag-selectable-dark-disabled-text, #808080); -$color-tag-removable-light-background: var(--color-tag-removable-light-background, #333333); -$color-tag-removable-light-text: var(--color-tag-removable-light-text, #ffffff); -$color-tag-removable-light-icon: var(--color-tag-removable-light-icon, #cccccc); -$color-tag-removable-light-hover-background: var(--color-tag-removable-light-hover-background, #4d4d4d); -$color-tag-removable-light-active-background: var(--color-tag-removable-light-active-background, #666666); -$color-tag-removable-dark-background: var(--color-tag-removable-dark-background, #cccccc); -$color-tag-removable-dark-text: var(--color-tag-removable-dark-text, #191919); -$color-tag-removable-dark-icon: var(--color-tag-removable-dark-icon, #191919); -$color-tag-removable-dark-hover-background: var(--color-tag-removable-dark-hover-background, #b3b3b3); -$color-tag-removable-dark-active-background: var(--color-tag-removable-dark-active-background, #999999); -$color-toggle-label: var(--color-toggle-label, #000000); -$color-toggle-off-background: var(--color-toggle-off-background, #808080); -$color-toggle-off-circle: var(--color-toggle-off-circle, #ffffff); -$color-toggle-on-background: var(--color-toggle-on-background, #ff5800); -$color-toggle-on-circle: var(--color-toggle-on-circle, #ffffff); -$color-toggle-hover-circle: var(--color-toggle-hover-circle, #e6e6e6); -$color-toggle-disabled-background: var(--color-toggle-disabled-background, #e6e6e6); -$color-toggle-disabled-circle: var(--color-toggle-disabled-circle, #b3b3b3); -$color-toggle-disabled-label: var(--color-toggle-disabled-label, #808080); -$color-toggle-disabled-checked-background: var(--color-toggle-disabled-checked-background, #b8bef4); -$color-toggle-disabled-checked-circle: var(--color-toggle-disabled-checked-circle, #ffffff); -$color-tooltip-background: var(--color-tooltip-background, #4d4d4d); -$color-tooltip-border: var(--color-tooltip-border, #ffffff); diff --git a/packages/tokens/build/bricoman/css/root.scss b/packages/tokens/build/bricoman/css/root.scss deleted file mode 100644 index a77683307..000000000 --- a/packages/tokens/build/bricoman/css/root.scss +++ /dev/null @@ -1,458 +0,0 @@ -:root { - --color-star-full: #ea7315; - --color-success-900: #023618; - --color-success-800: #035010; - --color-success-700: #006902; - --color-success-600: #188803; - --color-success-500: #46a610; - --color-success-400: #78be20; - --color-success-300: #9ed05f; - --color-success-200: #c5e39e; - --color-success-100: #ebf5de; - --color-warning-900: #360e00; - --color-warning-800: #531b00; - --color-warning-700: #8c3500; - --color-warning-600: #c65200; - --color-warning-500: #ea7315; - --color-warning-400: #ef934a; - --color-warning-300: #f4b27e; - --color-warning-200: #f8d2b3; - --color-warning-100: #fdf1e8; - --color-info-900: #002a41; - --color-info-800: #003a5c; - --color-info-700: #005c91; - --color-info-600: #007bb4; - --color-info-500: #0b96cc; - --color-info-400: #3facd7; - --color-info-300: #73c3e2; - --color-info-200: #a7d9ed; - --color-info-100: #daeff7; - --color-danger-900: #2d0000; - --color-danger-800: #530000; - --color-danger-700: #8c0003; - --color-danger-600: #c61112; - --color-danger-500: #ea302d; - --color-danger-400: #ef5f5c; - --color-danger-300: #f38d8c; - --color-danger-200: #f8bcbb; - --color-danger-100: #fdeaea; - --color-secondary-yellow-900: #46350d; - --color-secondary-yellow-800: #705613; - --color-secondary-yellow-700: #9c7b18; - --color-secondary-yellow-600: #c9a21b; - --color-secondary-yellow-500: #f8cc1c; - --color-secondary-yellow-400: #fcd64c; - --color-secondary-yellow-300: #fee07d; - --color-secondary-yellow-200: #ffebaf; - --color-secondary-yellow-100: #fff8e2; - --color-secondary-orange-900: #360e00; - --color-secondary-orange-800: #531b00; - --color-secondary-orange-700: #8c3500; - --color-secondary-orange-600: #c65200; - --color-secondary-orange-500: #ea7315; - --color-secondary-orange-400: #ef934a; - --color-secondary-orange-300: #f4b27e; - --color-secondary-orange-200: #f8d2b3; - --color-secondary-orange-100: #fdf1e8; - --color-secondary-red-900: #2d0000; - --color-secondary-red-800: #530000; - --color-secondary-red-700: #8c0003; - --color-secondary-red-600: #c61112; - --color-secondary-red-500: #ea302d; - --color-secondary-red-400: #ef5f5c; - --color-secondary-red-300: #f38d8c; - --color-secondary-red-200: #f8bcbb; - --color-secondary-red-100: #fdeaea; - --color-secondary-purple-900: #1c053d; - --color-secondary-purple-800: #2e0663; - --color-secondary-purple-700: #42058a; - --color-secondary-purple-600: #5803b3; - --color-secondary-purple-500: #7000dd; - --color-secondary-purple-400: #883be9; - --color-secondary-purple-300: #a575f3; - --color-secondary-purple-200: #c7b0fa; - --color-secondary-purple-100: #efebfe; - --color-secondary-blue-900: #002a41; - --color-secondary-blue-800: #003a5c; - --color-secondary-blue-700: #005c91; - --color-secondary-blue-600: #007bb4; - --color-secondary-blue-500: #0b96cc; - --color-secondary-blue-400: #3facd7; - --color-secondary-blue-300: #73c3e2; - --color-secondary-blue-200: #a7d9ed; - --color-secondary-blue-100: #daeff7; - --color-grey-000: #ffffff; - --color-grey-999: #000000; - --color-grey-900: #191919; - --color-grey-800: #333333; - --color-grey-700: #4d4d4d; - --color-grey-600: #666666; - --color-grey-500: #808080; - --color-grey-400: #999999; - --color-grey-300: #b3b3b3; - --color-grey-200: #cccccc; - --color-grey-100: #e6e6e6; - --color-primary-02-900: #421700; - --color-primary-02-800: #702700; - --color-primary-02-700: #943300; - --color-primary-02-600: #b83f00; - --color-primary-02-500: #e54f00; - --color-primary-02-400: #ff5800; - --color-primary-02-300: #ff7933; - --color-primary-02-200: #ffab80; - --color-primary-02-100: #ffe1d1; - --color-primary-01-900: #120949; - --color-primary-01-800: #130f7b; - --color-primary-01-700: #161cb6; - --color-primary-01-600: #373de7; - --color-primary-01-500: #4d5bf5; - --color-primary-01-400: #6875e8; - --color-primary-01-300: #8792ed; - --color-primary-01-200: #b8bef4; - --color-primary-01-100: #e5e7fa; - --color-tooltip-border: var(--color-grey-000); - --color-tooltip-background: var(--color-grey-700); - --color-toggle-disabled-checked-circle: var(--color-grey-000); - --color-toggle-disabled-checked-background: var(--color-primary-01-200); - --color-toggle-disabled-label: var(--color-grey-500); - --color-toggle-disabled-circle: var(--color-grey-300); - --color-toggle-disabled-background: var(--color-grey-100); - --color-toggle-hover-circle: var(--color-grey-100); - --color-toggle-on-circle: var(--color-grey-000); - --color-toggle-on-background: var(--color-primary-02-400); - --color-toggle-off-circle: var(--color-grey-000); - --color-toggle-off-background: var(--color-grey-500); - --color-toggle-label: var(--color-grey-999); - --color-tag-removable-dark-active-background: var(--color-grey-400); - --color-tag-removable-dark-hover-background: var(--color-grey-300); - --color-tag-removable-dark-icon: var(--color-grey-900); - --color-tag-removable-dark-text: var(--color-grey-900); - --color-tag-removable-dark-background: var(--color-grey-200); - --color-tag-removable-light-active-background: var(--color-grey-600); - --color-tag-removable-light-hover-background: var(--color-grey-700); - --color-tag-removable-light-icon: var(--color-grey-200); - --color-tag-removable-light-text: var(--color-grey-000); - --color-tag-removable-light-background: var(--color-grey-800); - --color-tag-selectable-dark-disabled-text: var(--color-grey-500); - --color-tag-selectable-dark-disabled-background: var(--color-grey-700); - --color-tag-selectable-dark-selected-hover-background: var(--color-primary-01-300); - --color-tag-selectable-dark-selected-text: var(--color-grey-900); - --color-tag-selectable-dark-selected-border: var(--color-primary-01-400); - --color-tag-selectable-dark-selected-background: var(--color-primary-01-400); - --color-tag-selectable-dark-active-text: var(--color-grey-900); - --color-tag-selectable-dark-active-border: var(--color-primary-01-200); - --color-tag-selectable-dark-active-background: var(--color-primary-01-200); - --color-tag-selectable-dark-hover-background: var(--color-primary-01-700); - --color-tag-selectable-dark-text: var(--color-grey-000); - --color-tag-selectable-dark-border: var(--color-grey-000); - --color-tag-selectable-dark-background: var(--color-grey-900); - --color-tag-selectable-light-selected-hover-background: var(--color-primary-01-700); - --color-tag-selectable-light-selected-text: var(--color-grey-000); - --color-tag-selectable-light-selected-background: var(--color-primary-01-600); - --color-tag-selectable-light-disabled-text: var(--color-grey-500); - --color-tag-selectable-light-disabled-background: var(--color-grey-100); - --color-tag-selectable-light-active-text: var(--color-grey-000); - --color-tag-selectable-light-active-border: var(--color-primary-01-800); - --color-tag-selectable-light-active-background: var(--color-primary-01-800); - --color-tag-selectable-light-hover-background: var(--color-primary-01-300); - --color-tag-selectable-light-text: var(--color-grey-900); - --color-tag-selectable-light-border: var(--color-grey-500); - --color-tag-selectable-light-background: var(--color-grey-000); - --color-tag-link-dark-active-background: var(--color-grey-700); - --color-tag-link-dark-hover-background: var(--color-grey-800); - --color-tag-link-dark-text: var(--color-grey-000); - --color-tag-link-dark-border: var(--color-grey-000); - --color-tag-link-dark-background: var(--color-grey-900); - --color-tag-link-light-active-background: var(--color-grey-200); - --color-tag-link-light-hover-background: var(--color-grey-100); - --color-tag-link-light-text: var(--color-grey-900); - --color-tag-link-light-border: var(--color-grey-500); - --color-tag-link-light-background: var(--color-grey-000); - --color-tag-text-dark-text: var(--color-grey-000); - --color-tag-text-dark-border: var(--color-grey-000); - --color-tag-text-dark-background: var(--color-grey-900); - --color-tag-text-light-text: var(--color-grey-900); - --color-tag-text-light-border: var(--color-grey-500); - --color-tag-text-light-background: var(--color-grey-000); - --color-tabs-active-disabled: var(--color-primary-01-200); - --color-tabs-selected-border: var(--color-grey-999); - --color-tabs-active-background: var(--color-primary-02-200); - --color-tabs-disabled-background: var(--color-grey-200); - --color-tabs-hover: var(--color-primary-01-800); - --color-tabs-element-background: var(--color-primary-02-100); - --color-tabs-shadow: var(--color-grey-999); - --color-tabs-background: var(--color-grey-000); - --color-stepper-title: var(--color-primary-01-500); - --color-stepper-icon: var(--color-primary-01-500); - --color-stepper-indicator-current-border: var(--color-primary-01-500); - --color-stepper-indicator-current-background: var(--color-primary-01-500); - --color-stepper-indicator-border: var(--color-grey-400); - --color-stepper-indicator-background: var(--color-grey-000); - --color-stepper-link-hover-text: var(--color-primary-01-500); - --color-stepper-item-current-background: var(--color-primary-01-500); - --color-stepper-item-background: var(--color-grey-400); - --color-star-hover: var(--color-secondary-orange-300); - --color-star-focus: var(--color-secondary-blue-500); - --color-star-empty: var(--color-grey-000); - --color-progress-branded-indicator: var(--color-primary-01-500); - --color-progress-percentage-half: var(--color-grey-000); - --color-progress-percentage-default: var(--color-grey-900); - --color-progress-indicator: var(--color-info-600); - --color-progress-background: var(--color-grey-200); - --color-phone-number-item-focus-background: var(--color-grey-100); - --color-phone-number-item-border: var(--color-grey-300); - --color-phone-number-list-background: var(--color-grey-000); - --color-phone-number-button-border: var(--color-grey-600); - --color-password-input-button-hover-background: var(--color-grey-100); - --color-overlay-loader-background: var(--color-grey-900); - --color-overlay-background: var(--color-grey-900); - --color-option-card-disabled-label: var(--color-grey-600); - --color-option-card-disabled-content: var(--color-grey-200); - --color-option-card-checked-label-shadow: var(--color-primary-01-100); - --color-option-card-checked-label-border: var(--color-primary-01-500); - --color-option-card-hover-label-shadow: var(--color-grey-800); - --color-option-card-label-shadow: var(--color-grey-300); - --color-option-button-disabled-label-background: var(--color-grey-200); - --color-option-button-checked-label-shadow: var(--color-primary-01-100); - --color-option-button-checked-label-border: var(--color-primary-01-500); - --color-option-button-hover-label-shadow: var(--color-grey-800); - --color-option-button-label-shadow: var(--color-grey-300); - --color-notification-danger-icon: var(--color-danger-600); - --color-notification-danger-border: var(--color-danger-500); - --color-notification-danger-background: var(--color-danger-100); - --color-notification-warning-icon: var(--color-warning-600); - --color-notification-warning-border: var(--color-warning-500); - --color-notification-warning-background: var(--color-warning-100); - --color-notification-success-icon: var(--color-success-600); - --color-notification-success-border: var(--color-success-500); - --color-notification-success-background: var(--color-success-100); - --color-notification-information-icon: var(--color-info-600); - --color-notification-information-border: var(--color-info-500); - --color-notification-information-background: var(--color-info-100); - --color-notification-font: var(--color-grey-999); - --color-listbox-disabled-background: var(--color-grey-200); - --color-listbox-tile-hover-background: var(--color-grey-100); - --color-listbox-tile-shadow: var(--color-grey-900); - --color-listbox-tile-border: var(--color-grey-300); - --color-listbox-border: var(--color-grey-600); - --color-listbox-background: var(--color-grey-000); - --color-link-danger-hover: var(--color-secondary-red-800); - --color-link-danger-disabled: var(--color-grey-100); - --color-link-danger-active: var(--color-secondary-red-700); - --color-link-danger-visited: var(--color-secondary-red-700); - --color-link-danger-base: var(--color-secondary-red-600); - --color-link-primary-02-hover: var(--color-primary-02-900); - --color-link-primary-02-disabled: var(--color-grey-100); - --color-link-primary-02-active: var(--color-primary-02-700); - --color-link-primary-02-visited: var(--color-primary-02-700); - --color-link-primary-02-base: var(--color-primary-02-600); - --color-link-primary-hover: var(--color-primary-02-600); - --color-link-primary-disabled: var(--color-grey-100); - --color-link-primary-active: var(--color-primary-02-400); - --color-link-primary-visited: var(--color-primary-02-400); - --color-link-primary-base: var(--color-primary-02-400); - --color-link-light-hover: var(--color-grey-400); - --color-link-light-disabled: var(--color-grey-100); - --color-link-light-active: var(--color-grey-200); - --color-link-light-visited: var(--color-grey-200); - --color-link-light-base: var(--color-grey-000); - --color-link-dark-hover: var(--color-grey-600); - --color-link-dark-disabled: var(--color-grey-100); - --color-link-dark-active: var(--color-grey-800); - --color-link-dark-visited: var(--color-grey-800); - --color-link-dark-base: var(--color-grey-999); - --color-input-checked-hover-border: var(--color-primary-02-400); - --color-input-checked-icon: var(--color-grey-000); - --color-input-checked-background: var(--color-primary-02-400); - --color-input-checked-border: var(--color-primary-02-400); - --color-input-invalid-hover-border: var(--color-danger-800); - --color-input-invalid-border: var(--color-danger-600); - --color-input-valid-hover-border: var(--color-success-800); - --color-input-valid-border: var(--color-success-500); - --color-input-focus-border: var(--color-secondary-blue-500); - --color-input-hover-border: var(--color-grey-900); - --color-input-disabled-label: var(--color-grey-500); - --color-input-disabled-icon: var(--color-grey-400); - --color-input-disabled-border: var(--color-grey-100); - --color-input-disabled-background: var(--color-grey-100); - --color-input-background: var(--color-grey-000); - --color-input-placeholder: var(--color-grey-500); - --color-input-border: var(--color-grey-500); - --color-input-text: var(--color-grey-800); - --color-hero-cover-background: var(--color-grey-900); - --color-heading-line-lightest: var(--color-primary-02-200); - --color-heading-line-default: var(--color-primary-02-400); - --color-heading-underline-lightest: var(--color-primary-01-200); - --color-heading-underline-default: var(--color-primary-01-500); - --color-font-danger: var(--color-danger-600); - --color-font-warning: var(--color-warning-600); - --color-font-success: var(--color-success-600); - --color-font-info: var(--color-info-600); - --color-font-lightest: var(--color-grey-000); - --color-font-light: var(--color-grey-600); - --color-font-dark: var(--color-grey-800); - --color-font-darker: var(--color-grey-900); - --color-font-darkest: var(--color-grey-999); - --color-font-primary-02: var(--color-primary-02-500); - --color-font-primary-01: var(--color-primary-01-600); - --color-focus-border: var(--color-secondary-blue-500); - --color-focus-gap: var(--color-grey-000); - --color-flag-bordered-danger-text: var(--color-secondary-red-600); - --color-flag-bordered-danger-border: var(--color-secondary-red-600); - --color-flag-bordered-danger-background: var(--color-grey-000); - --color-flag-bordered-light-text: var(--color-grey-000); - --color-flag-bordered-light-border: var(--color-grey-000); - --color-flag-bordered-light-background: var(--color-grey-999); - --color-flag-bordered-dark-text: var(--color-grey-999); - --color-flag-bordered-dark-border: var(--color-grey-999); - --color-flag-bordered-dark-background: var(--color-grey-000); - --color-flag-bordered-primary-02-text: var(--color-primary-02-600); - --color-flag-bordered-primary-02-border: var(--color-primary-02-600); - --color-flag-bordered-primary-02-background: var(--color-grey-000); - --color-flag-bordered-text: var(--color-primary-01-600); - --color-flag-bordered-border: var(--color-primary-01-600); - --color-flag-bordered-background: var(--color-grey-000); - --color-flag-solid-danger-text: var(--color-grey-000); - --color-flag-solid-danger-border: var(--color-secondary-red-600); - --color-flag-solid-danger-background: var(--color-secondary-red-600); - --color-flag-solid-light-text: var(--color-grey-999); - --color-flag-solid-light-border: var(--color-grey-000); - --color-flag-solid-light-background: var(--color-grey-000); - --color-flag-solid-dark-text: var(--color-grey-000); - --color-flag-solid-dark-border: var(--color-grey-999); - --color-flag-solid-dark-background: var(--color-grey-999); - --color-flag-solid-primary-02-text: var(--color-grey-000); - --color-flag-solid-primary-02-border: var(--color-primary-02-600); - --color-flag-solid-primary-02-background: var(--color-primary-02-600); - --color-flag-solid-text: var(--color-grey-000); - --color-flag-solid-border: var(--color-primary-01-600); - --color-flag-solid-background: var(--color-primary-01-600); - --color-fileuploader-alert: var(--color-danger-600); - --color-fileuploader-valid: var(--color-primary-01-500); - --color-fileuploader-files-delete: var(--color-grey-200); - --color-fileuploader-files-list: var(--color-grey-100); - --color-fileuploader-font: var(--color-grey-999); - --color-divider-dark: var(--color-grey-999); - --color-divider-default: var(--color-grey-600); - --color-divider-light: var(--color-grey-300); - --color-divider-lightest: var(--color-grey-000); - --color-dialog-footer-shadow: var(--color-grey-900); - --color-dialog-close: var(--color-grey-500); - --color-dialog-icon: var(--color-grey-600); - --color-dialog-background: var(--color-grey-000); - --color-datatable-icon: var(--color-primary-01-500); - --color-datatable-subtable-font: var(--color-grey-999); - --color-datatable-subtable-border: var(--color-grey-300); - --color-datatable-subtable-background: var(--color-grey-100); - --color-datatable-cell-background-selected: var(--color-primary-01-100); - --color-datatable-cell-background-hover: var(--color-grey-100); - --color-datatable-cell-font: var(--color-grey-900); - --color-datatable-sort-arrow-active: var(--color-grey-800); - --color-datatable-sort-arrow-default: var(--color-grey-200); - --color-datatable-thead-font: var(--color-grey-900); - --color-datatable-container-background: var(--color-grey-100); - --color-datatable-filters-border: var(--color-grey-300); - --color-card-bordered-border: var(--color-grey-500); - --color-card-bordered-background: var(--color-grey-000); - --color-button-bordered-danger-hover-font: var(--color-danger-700); - --color-button-bordered-danger-hover-background: var(--color-secondary-red-100); - --color-button-bordered-danger-active-font: var(--color-danger-800); - --color-button-bordered-danger-active-background: var(--color-secondary-red-200); - --color-button-bordered-danger-disabled-font: var(--color-grey-600); - --color-button-bordered-danger-disabled-background: var(--color-grey-200); - --color-button-bordered-danger-focus-border: var(--color-secondary-red-700); - --color-button-bordered-danger-font: var(--color-secondary-red-600); - --color-button-bordered-danger-border: var(--color-secondary-red-600); - --color-button-bordered-danger-background: var(--color-grey-000); - --color-button-bordered-neutral-hover-background: var(--color-grey-100); - --color-button-bordered-neutral-active-background: var(--color-grey-200); - --color-button-bordered-neutral-disabled-font: var(--color-grey-600); - --color-button-bordered-neutral-disabled-background: var(--color-grey-200); - --color-button-bordered-neutral-focus-border: var(--color-grey-900); - --color-button-bordered-neutral-font: var(--color-grey-800); - --color-button-bordered-neutral-border: var(--color-grey-800); - --color-button-bordered-neutral-background: var(--color-grey-000); - --color-button-bordered-primary-02-hover-background: var(--color-primary-02-100); - --color-button-bordered-primary-02-active-background: var(--color-primary-02-200); - --color-button-bordered-primary-02-disabled-font: var(--color-grey-600); - --color-button-bordered-primary-02-disabled-background: var(--color-grey-200); - --color-button-bordered-primary-02-focus-border: var(--color-primary-02-900); - --color-button-bordered-primary-02-font: var(--color-primary-02-400); - --color-button-bordered-primary-02-border: var(--color-primary-02-400); - --color-button-bordered-primary-02-background: var(--color-grey-000); - --color-button-bordered-hover-font: var(--color-primary-01-700); - --color-button-bordered-hover-background: var(--color-primary-01-100); - --color-button-bordered-active-font: var(--color-primary-01-800); - --color-button-bordered-active-background: var(--color-primary-01-200); - --color-button-bordered-disabled-font: var(--color-grey-600); - --color-button-bordered-disabled-background: var(--color-grey-200); - --color-button-bordered-focus-border: var(--color-primary-01-700); - --color-button-bordered-font: var(--color-primary-01-900); - --color-button-bordered-border: var(--color-primary-01-900); - --color-button-bordered-background: var(--color-grey-000); - --color-button-solid-danger-hover-font: var(--color-grey-000); - --color-button-solid-danger-hover-background: var(--color-danger-700); - --color-button-solid-danger-active-background: var(--color-danger-700); - --color-button-solid-danger-disabled-font: var(--color-grey-600); - --color-button-solid-danger-disabled-background: var(--color-grey-200); - --color-button-solid-danger-focus-border: var(--color-danger-700); - --color-button-solid-danger-font: var(--color-grey-000); - --color-button-solid-danger-background: var(--color-danger-600); - --color-button-solid-neutral-hover-font: var(--color-grey-000); - --color-button-solid-neutral-hover-background: var(--color-grey-900); - --color-button-solid-neutral-active-background: var(--color-grey-800); - --color-button-solid-neutral-disabled-font: var(--color-grey-600); - --color-button-solid-neutral-disabled-background: var(--color-grey-200); - --color-button-solid-neutral-focus-border: var(--color-grey-900); - --color-button-solid-neutral-font: var(--color-grey-000); - --color-button-solid-neutral-background: var(--color-grey-800); - --color-button-solid-primary-02-hover-font: var(--color-grey-000); - --color-button-solid-primary-02-hover-background: var(--color-primary-02-600); - --color-button-solid-primary-02-active-background: var(--color-primary-02-900); - --color-button-solid-primary-02-disabled-font: var(--color-grey-600); - --color-button-solid-primary-02-disabled-background: var(--color-grey-200); - --color-button-solid-primary-02-focus-border: var(--color-primary-02-900); - --color-button-solid-primary-02-font: var(--color-grey-000); - --color-button-solid-primary-02-background: var(--color-primary-02-400); - --color-button-solid-hover-font: var(--color-grey-000); - --color-button-solid-hover-background: var(--color-primary-01-700); - --color-button-solid-active-background: var(--color-primary-01-700); - --color-button-solid-disabled-font: var(--color-grey-600); - --color-button-solid-disabled-background: var(--color-grey-200); - --color-button-solid-focus-border: var(--color-primary-01-700); - --color-button-solid-font: var(--color-grey-000); - --color-button-solid-background: var(--color-primary-01-900); - --color-breadcrumb-arrow-invert: var(--color-grey-000); - --color-breadcrumb-arrow: var(--color-grey-800); - --color-secondary-green-900: var(--color-primary-01-900); - --color-secondary-green-800: var(--color-primary-01-800); - --color-secondary-green-700: var(--color-primary-01-700); - --color-secondary-green-600: var(--color-primary-01-600); - --color-secondary-green-500: var(--color-primary-01-500); - --color-secondary-green-400: var(--color-primary-01-400); - --color-secondary-green-300: var(--color-primary-01-300); - --color-secondary-green-200: var(--color-primary-01-200); - --color-secondary-green-100: var(--color-primary-01-100); - --color-badge-neutral-text: var(--color-grey-700); - --color-badge-neutral-border: var(--color-grey-500); - --color-badge-neutral-background: var(--color-grey-100); - --color-badge-danger-text: var(--color-danger-700); - --color-badge-danger-border: var(--color-danger-500); - --color-badge-danger-background: var(--color-danger-100); - --color-badge-warning-text: var(--color-warning-700); - --color-badge-warning-border: var(--color-warning-500); - --color-badge-warning-background: var(--color-warning-100); - --color-badge-success-text: var(--color-success-700); - --color-badge-success-border: var(--color-success-500); - --color-badge-success-background: var(--color-success-100); - --color-badge-info-text: var(--color-info-700); - --color-badge-info-border: var(--color-info-500); - --color-badge-info-background: var(--color-info-100); - --color-tabs-selected-text: var(--color-font-darkest); - --color-tabs-active-text: var(--color-font-dark); - --color-tabs-default: var(--color-font-light); - --color-fields-help: var(--color-font-light); - --color-fields-requirement: var(--color-font-light); - --color-fields-label: var(--color-font-dark); - --color-fields-error: var(--color-font-danger); -} diff --git a/packages/tokens/build/bricoman/js/tokens.js b/packages/tokens/build/bricoman/js/tokens.js deleted file mode 100644 index 383925b3b..000000000 --- a/packages/tokens/build/bricoman/js/tokens.js +++ /dev/null @@ -1,558 +0,0 @@ -export const BorderS = 1; -export const BorderM = 2; -export const BorderL = 3; -export const ColorBadgeInfoBackground = "#daeff7"; -export const ColorBadgeInfoBorder = "#0b96cc"; -export const ColorBadgeInfoText = "#005c91"; -export const ColorBadgeSuccessBackground = "#ebf5de"; -export const ColorBadgeSuccessBorder = "#46a610"; -export const ColorBadgeSuccessText = "#006902"; -export const ColorBadgeWarningBackground = "#fdf1e8"; -export const ColorBadgeWarningBorder = "#ea7315"; -export const ColorBadgeWarningText = "#8c3500"; -export const ColorBadgeDangerBackground = "#fdeaea"; -export const ColorBadgeDangerBorder = "#ea302d"; -export const ColorBadgeDangerText = "#8c0003"; -export const ColorBadgeNeutralBackground = "#e6e6e6"; -export const ColorBadgeNeutralBorder = "#808080"; -export const ColorBadgeNeutralText = "#4d4d4d"; -export const ColorPrimary01100 = "#e5e7fa"; -export const ColorPrimary01200 = "#b8bef4"; -export const ColorPrimary01300 = "#8792ed"; -export const ColorPrimary01400 = "#6875e8"; -export const ColorPrimary01500 = "#4d5bf5"; -export const ColorPrimary01600 = "#373de7"; -export const ColorPrimary01700 = "#161cb6"; -export const ColorPrimary01800 = "#130f7b"; -export const ColorPrimary01900 = "#120949"; -export const ColorPrimary02100 = "#ffe1d1"; -export const ColorPrimary02200 = "#ffab80"; -export const ColorPrimary02300 = "#ff7933"; -export const ColorPrimary02400 = "#ff5800"; -export const ColorPrimary02500 = "#e54f00"; -export const ColorPrimary02600 = "#b83f00"; -export const ColorPrimary02700 = "#943300"; -export const ColorPrimary02800 = "#702700"; -export const ColorPrimary02900 = "#421700"; -export const ColorGrey100 = "#e6e6e6"; -export const ColorGrey200 = "#cccccc"; -export const ColorGrey300 = "#b3b3b3"; -export const ColorGrey400 = "#999999"; -export const ColorGrey500 = "#808080"; -export const ColorGrey600 = "#666666"; -export const ColorGrey700 = "#4d4d4d"; -export const ColorGrey800 = "#333333"; -export const ColorGrey900 = "#191919"; -export const ColorGrey999 = "#000000"; -export const ColorGrey000 = "#ffffff"; -export const ColorSecondaryBlue100 = "#daeff7"; -export const ColorSecondaryBlue200 = "#a7d9ed"; -export const ColorSecondaryBlue300 = "#73c3e2"; -export const ColorSecondaryBlue400 = "#3facd7"; -export const ColorSecondaryBlue500 = "#0b96cc"; -export const ColorSecondaryBlue600 = "#007bb4"; -export const ColorSecondaryBlue700 = "#005c91"; -export const ColorSecondaryBlue800 = "#003a5c"; -export const ColorSecondaryBlue900 = "#002a41"; -export const ColorSecondaryGreen100 = "#e5e7fa"; -export const ColorSecondaryGreen200 = "#b8bef4"; -export const ColorSecondaryGreen300 = "#8792ed"; -export const ColorSecondaryGreen400 = "#6875e8"; -export const ColorSecondaryGreen500 = "#4d5bf5"; -export const ColorSecondaryGreen600 = "#373de7"; -export const ColorSecondaryGreen700 = "#161cb6"; -export const ColorSecondaryGreen800 = "#130f7b"; -export const ColorSecondaryGreen900 = "#120949"; -export const ColorSecondaryPurple100 = "#efebfe"; -export const ColorSecondaryPurple200 = "#c7b0fa"; -export const ColorSecondaryPurple300 = "#a575f3"; -export const ColorSecondaryPurple400 = "#883be9"; -export const ColorSecondaryPurple500 = "#7000dd"; -export const ColorSecondaryPurple600 = "#5803b3"; -export const ColorSecondaryPurple700 = "#42058a"; -export const ColorSecondaryPurple800 = "#2e0663"; -export const ColorSecondaryPurple900 = "#1c053d"; -export const ColorSecondaryRed100 = "#fdeaea"; -export const ColorSecondaryRed200 = "#f8bcbb"; -export const ColorSecondaryRed300 = "#f38d8c"; -export const ColorSecondaryRed400 = "#ef5f5c"; -export const ColorSecondaryRed500 = "#ea302d"; -export const ColorSecondaryRed600 = "#c61112"; -export const ColorSecondaryRed700 = "#8c0003"; -export const ColorSecondaryRed800 = "#530000"; -export const ColorSecondaryRed900 = "#2d0000"; -export const ColorSecondaryOrange100 = "#fdf1e8"; -export const ColorSecondaryOrange200 = "#f8d2b3"; -export const ColorSecondaryOrange300 = "#f4b27e"; -export const ColorSecondaryOrange400 = "#ef934a"; -export const ColorSecondaryOrange500 = "#ea7315"; -export const ColorSecondaryOrange600 = "#c65200"; -export const ColorSecondaryOrange700 = "#8c3500"; -export const ColorSecondaryOrange800 = "#531b00"; -export const ColorSecondaryOrange900 = "#360e00"; -export const ColorSecondaryYellow100 = "#fff8e2"; -export const ColorSecondaryYellow200 = "#ffebaf"; -export const ColorSecondaryYellow300 = "#fee07d"; -export const ColorSecondaryYellow400 = "#fcd64c"; -export const ColorSecondaryYellow500 = "#f8cc1c"; -export const ColorSecondaryYellow600 = "#c9a21b"; -export const ColorSecondaryYellow700 = "#9c7b18"; -export const ColorSecondaryYellow800 = "#705613"; -export const ColorSecondaryYellow900 = "#46350d"; -export const ColorDanger100 = "#fdeaea"; -export const ColorDanger200 = "#f8bcbb"; -export const ColorDanger300 = "#f38d8c"; -export const ColorDanger400 = "#ef5f5c"; -export const ColorDanger500 = "#ea302d"; -export const ColorDanger600 = "#c61112"; -export const ColorDanger700 = "#8c0003"; -export const ColorDanger800 = "#530000"; -export const ColorDanger900 = "#2d0000"; -export const ColorInfo100 = "#daeff7"; -export const ColorInfo200 = "#a7d9ed"; -export const ColorInfo300 = "#73c3e2"; -export const ColorInfo400 = "#3facd7"; -export const ColorInfo500 = "#0b96cc"; -export const ColorInfo600 = "#007bb4"; -export const ColorInfo700 = "#005c91"; -export const ColorInfo800 = "#003a5c"; -export const ColorInfo900 = "#002a41"; -export const ColorWarning100 = "#fdf1e8"; -export const ColorWarning200 = "#f8d2b3"; -export const ColorWarning300 = "#f4b27e"; -export const ColorWarning400 = "#ef934a"; -export const ColorWarning500 = "#ea7315"; -export const ColorWarning600 = "#c65200"; -export const ColorWarning700 = "#8c3500"; -export const ColorWarning800 = "#531b00"; -export const ColorWarning900 = "#360e00"; -export const ColorSuccess100 = "#ebf5de"; -export const ColorSuccess200 = "#c5e39e"; -export const ColorSuccess300 = "#9ed05f"; -export const ColorSuccess400 = "#78be20"; -export const ColorSuccess500 = "#46a610"; -export const ColorSuccess600 = "#188803"; -export const ColorSuccess700 = "#006902"; -export const ColorSuccess800 = "#035010"; -export const ColorSuccess900 = "#023618"; -export const ColorBreadcrumbArrow = "#333333"; -export const ColorBreadcrumbArrowInvert = "#ffffff"; -export const ColorButtonSolidBackground = "#120949"; -export const ColorButtonSolidFont = "#ffffff"; -export const ColorButtonSolidFocusBorder = "#161cb6"; -export const ColorButtonSolidDisabledBackground = "#cccccc"; -export const ColorButtonSolidDisabledFont = "#666666"; -export const ColorButtonSolidActiveBackground = "#161cb6"; -export const ColorButtonSolidHoverBackground = "#161cb6"; -export const ColorButtonSolidHoverFont = "#ffffff"; -export const ColorButtonSolidPrimary02Background = "#ff5800"; -export const ColorButtonSolidPrimary02Font = "#ffffff"; -export const ColorButtonSolidPrimary02FocusBorder = "#421700"; -export const ColorButtonSolidPrimary02DisabledBackground = "#cccccc"; -export const ColorButtonSolidPrimary02DisabledFont = "#666666"; -export const ColorButtonSolidPrimary02ActiveBackground = "#421700"; -export const ColorButtonSolidPrimary02HoverBackground = "#b83f00"; -export const ColorButtonSolidPrimary02HoverFont = "#ffffff"; -export const ColorButtonSolidNeutralBackground = "#333333"; -export const ColorButtonSolidNeutralFont = "#ffffff"; -export const ColorButtonSolidNeutralFocusBorder = "#191919"; -export const ColorButtonSolidNeutralDisabledBackground = "#cccccc"; -export const ColorButtonSolidNeutralDisabledFont = "#666666"; -export const ColorButtonSolidNeutralActiveBackground = "#333333"; -export const ColorButtonSolidNeutralHoverBackground = "#191919"; -export const ColorButtonSolidNeutralHoverFont = "#ffffff"; -export const ColorButtonSolidDangerBackground = "#c61112"; -export const ColorButtonSolidDangerFont = "#ffffff"; -export const ColorButtonSolidDangerFocusBorder = "#8c0003"; -export const ColorButtonSolidDangerDisabledBackground = "#cccccc"; -export const ColorButtonSolidDangerDisabledFont = "#666666"; -export const ColorButtonSolidDangerActiveBackground = "#8c0003"; -export const ColorButtonSolidDangerHoverBackground = "#8c0003"; -export const ColorButtonSolidDangerHoverFont = "#ffffff"; -export const ColorButtonBorderedBackground = "#ffffff"; -export const ColorButtonBorderedBorder = "#120949"; -export const ColorButtonBorderedFont = "#120949"; -export const ColorButtonBorderedFocusBorder = "#161cb6"; -export const ColorButtonBorderedDisabledBackground = "#cccccc"; -export const ColorButtonBorderedDisabledFont = "#666666"; -export const ColorButtonBorderedActiveBackground = "#b8bef4"; -export const ColorButtonBorderedActiveFont = "#130f7b"; -export const ColorButtonBorderedHoverBackground = "#e5e7fa"; -export const ColorButtonBorderedHoverFont = "#161cb6"; -export const ColorButtonBorderedPrimary02Background = "#ffffff"; -export const ColorButtonBorderedPrimary02Border = "#ff5800"; -export const ColorButtonBorderedPrimary02Font = "#ff5800"; -export const ColorButtonBorderedPrimary02FocusBorder = "#421700"; -export const ColorButtonBorderedPrimary02DisabledBackground = "#cccccc"; -export const ColorButtonBorderedPrimary02DisabledFont = "#666666"; -export const ColorButtonBorderedPrimary02ActiveBackground = "#ffab80"; -export const ColorButtonBorderedPrimary02HoverBackground = "#ffe1d1"; -export const ColorButtonBorderedNeutralBackground = "#ffffff"; -export const ColorButtonBorderedNeutralBorder = "#333333"; -export const ColorButtonBorderedNeutralFont = "#333333"; -export const ColorButtonBorderedNeutralFocusBorder = "#191919"; -export const ColorButtonBorderedNeutralDisabledBackground = "#cccccc"; -export const ColorButtonBorderedNeutralDisabledFont = "#666666"; -export const ColorButtonBorderedNeutralActiveBackground = "#cccccc"; -export const ColorButtonBorderedNeutralHoverBackground = "#e6e6e6"; -export const ColorButtonBorderedDangerBackground = "#ffffff"; -export const ColorButtonBorderedDangerBorder = "#c61112"; -export const ColorButtonBorderedDangerFont = "#c61112"; -export const ColorButtonBorderedDangerFocusBorder = "#8c0003"; -export const ColorButtonBorderedDangerDisabledBackground = "#cccccc"; -export const ColorButtonBorderedDangerDisabledFont = "#666666"; -export const ColorButtonBorderedDangerActiveBackground = "#f8bcbb"; -export const ColorButtonBorderedDangerActiveFont = "#530000"; -export const ColorButtonBorderedDangerHoverBackground = "#fdeaea"; -export const ColorButtonBorderedDangerHoverFont = "#8c0003"; -export const ColorCardBorderedBackground = "#ffffff"; -export const ColorCardBorderedBorder = "#808080"; -export const ColorDatatableFiltersBorder = "#b3b3b3"; -export const ColorDatatableContainerBackground = "#e6e6e6"; -export const ColorDatatableTheadFont = "#191919"; -export const ColorDatatableSortArrowDefault = "#cccccc"; -export const ColorDatatableSortArrowActive = "#333333"; -export const ColorDatatableCellFont = "#191919"; -export const ColorDatatableCellBackgroundHover = "#e6e6e6"; -export const ColorDatatableCellBackgroundSelected = "#e5e7fa"; -export const ColorDatatableSubtableBackground = "#e6e6e6"; -export const ColorDatatableSubtableBorder = "#b3b3b3"; -export const ColorDatatableSubtableFont = "#000000"; -export const ColorDatatableIcon = "#4d5bf5"; -export const ColorDialogBackground = "#ffffff"; -export const ColorDialogIcon = "#666666"; -export const ColorDialogClose = "#808080"; -export const ColorDialogFooterShadow = "#191919"; -export const ColorDividerLightest = "#ffffff"; -export const ColorDividerLight = "#b3b3b3"; -export const ColorDividerDefault = "#666666"; -export const ColorDividerDark = "#000000"; -export const ColorFieldsError = "#c61112"; -export const ColorFieldsLabel = "#333333"; -export const ColorFieldsRequirement = "#666666"; -export const ColorFieldsHelp = "#666666"; -export const ColorFileuploaderFont = "#000000"; -export const ColorFileuploaderFilesList = "#e6e6e6"; -export const ColorFileuploaderFilesDelete = "#cccccc"; -export const ColorFileuploaderValid = "#4d5bf5"; -export const ColorFileuploaderAlert = "#c61112"; -export const ColorFlagSolidBackground = "#373de7"; -export const ColorFlagSolidBorder = "#373de7"; -export const ColorFlagSolidText = "#ffffff"; -export const ColorFlagSolidPrimary02Background = "#b83f00"; -export const ColorFlagSolidPrimary02Border = "#b83f00"; -export const ColorFlagSolidPrimary02Text = "#ffffff"; -export const ColorFlagSolidDarkBackground = "#000000"; -export const ColorFlagSolidDarkBorder = "#000000"; -export const ColorFlagSolidDarkText = "#ffffff"; -export const ColorFlagSolidLightBackground = "#ffffff"; -export const ColorFlagSolidLightBorder = "#ffffff"; -export const ColorFlagSolidLightText = "#000000"; -export const ColorFlagSolidDangerBackground = "#c61112"; -export const ColorFlagSolidDangerBorder = "#c61112"; -export const ColorFlagSolidDangerText = "#ffffff"; -export const ColorFlagBorderedBackground = "#ffffff"; -export const ColorFlagBorderedBorder = "#373de7"; -export const ColorFlagBorderedText = "#373de7"; -export const ColorFlagBorderedPrimary02Background = "#ffffff"; -export const ColorFlagBorderedPrimary02Border = "#b83f00"; -export const ColorFlagBorderedPrimary02Text = "#b83f00"; -export const ColorFlagBorderedDarkBackground = "#ffffff"; -export const ColorFlagBorderedDarkBorder = "#000000"; -export const ColorFlagBorderedDarkText = "#000000"; -export const ColorFlagBorderedLightBackground = "#000000"; -export const ColorFlagBorderedLightBorder = "#ffffff"; -export const ColorFlagBorderedLightText = "#ffffff"; -export const ColorFlagBorderedDangerBackground = "#ffffff"; -export const ColorFlagBorderedDangerBorder = "#c61112"; -export const ColorFlagBorderedDangerText = "#c61112"; -export const ColorFocusGap = "#ffffff"; -export const ColorFocusBorder = "#0b96cc"; -export const ColorFontPrimary01 = "#373de7"; -export const ColorFontPrimary02 = "#e54f00"; -export const ColorFontDarkest = "#000000"; -export const ColorFontDarker = "#191919"; -export const ColorFontDark = "#333333"; -export const ColorFontLight = "#666666"; -export const ColorFontLightest = "#ffffff"; -export const ColorFontInfo = "#007bb4"; -export const ColorFontSuccess = "#188803"; -export const ColorFontWarning = "#c65200"; -export const ColorFontDanger = "#c61112"; -export const ColorHeadingUnderlineDefault = "#4d5bf5"; -export const ColorHeadingUnderlineLightest = "#b8bef4"; -export const ColorHeadingLineDefault = "#ff5800"; -export const ColorHeadingLineLightest = "#ffab80"; -export const ColorHeroCoverBackground = "#191919"; -export const ColorInputText = "#333333"; -export const ColorInputBorder = "#808080"; -export const ColorInputPlaceholder = "#808080"; -export const ColorInputBackground = "#ffffff"; -export const ColorInputDisabledBackground = "#e6e6e6"; -export const ColorInputDisabledBorder = "#e6e6e6"; -export const ColorInputDisabledIcon = "#999999"; -export const ColorInputDisabledLabel = "#808080"; -export const ColorInputHoverBorder = "#191919"; -export const ColorInputFocusBorder = "#0b96cc"; -export const ColorInputValidBorder = "#46a610"; -export const ColorInputValidHoverBorder = "#035010"; -export const ColorInputInvalidBorder = "#c61112"; -export const ColorInputInvalidHoverBorder = "#530000"; -export const ColorInputCheckedBorder = "#ff5800"; -export const ColorInputCheckedBackground = "#ff5800"; -export const ColorInputCheckedIcon = "#ffffff"; -export const ColorInputCheckedHoverBorder = "#ff5800"; -export const ColorLinkDarkBase = "#000000"; -export const ColorLinkDarkVisited = "#333333"; -export const ColorLinkDarkActive = "#333333"; -export const ColorLinkDarkDisabled = "#e6e6e6"; -export const ColorLinkDarkHover = "#666666"; -export const ColorLinkLightBase = "#ffffff"; -export const ColorLinkLightVisited = "#cccccc"; -export const ColorLinkLightActive = "#cccccc"; -export const ColorLinkLightDisabled = "#e6e6e6"; -export const ColorLinkLightHover = "#999999"; -export const ColorLinkPrimaryBase = "#ff5800"; -export const ColorLinkPrimaryVisited = "#ff5800"; -export const ColorLinkPrimaryActive = "#ff5800"; -export const ColorLinkPrimaryDisabled = "#e6e6e6"; -export const ColorLinkPrimaryHover = "#b83f00"; -export const ColorLinkPrimary02Base = "#b83f00"; -export const ColorLinkPrimary02Visited = "#943300"; -export const ColorLinkPrimary02Active = "#943300"; -export const ColorLinkPrimary02Disabled = "#e6e6e6"; -export const ColorLinkPrimary02Hover = "#421700"; -export const ColorLinkDangerBase = "#c61112"; -export const ColorLinkDangerVisited = "#8c0003"; -export const ColorLinkDangerActive = "#8c0003"; -export const ColorLinkDangerDisabled = "#e6e6e6"; -export const ColorLinkDangerHover = "#530000"; -export const ColorListboxBackground = "#ffffff"; -export const ColorListboxBorder = "#666666"; -export const ColorListboxTileBorder = "#b3b3b3"; -export const ColorListboxTileShadow = "#191919"; -export const ColorListboxTileHoverBackground = "#e6e6e6"; -export const ColorListboxDisabledBackground = "#cccccc"; -export const ColorNotificationFont = "#000000"; -export const ColorNotificationInformationBackground = "#daeff7"; -export const ColorNotificationInformationBorder = "#0b96cc"; -export const ColorNotificationInformationIcon = "#007bb4"; -export const ColorNotificationSuccessBackground = "#ebf5de"; -export const ColorNotificationSuccessBorder = "#46a610"; -export const ColorNotificationSuccessIcon = "#188803"; -export const ColorNotificationWarningBackground = "#fdf1e8"; -export const ColorNotificationWarningBorder = "#ea7315"; -export const ColorNotificationWarningIcon = "#c65200"; -export const ColorNotificationDangerBackground = "#fdeaea"; -export const ColorNotificationDangerBorder = "#ea302d"; -export const ColorNotificationDangerIcon = "#c61112"; -export const ColorOptionButtonLabelShadow = "#b3b3b3"; -export const ColorOptionButtonHoverLabelShadow = "#333333"; -export const ColorOptionButtonCheckedLabelBorder = "#4d5bf5"; -export const ColorOptionButtonCheckedLabelShadow = "#e5e7fa"; -export const ColorOptionButtonDisabledLabelBackground = "#cccccc"; -export const ColorOptionCardLabelShadow = "#b3b3b3"; -export const ColorOptionCardHoverLabelShadow = "#333333"; -export const ColorOptionCardCheckedLabelBorder = "#4d5bf5"; -export const ColorOptionCardCheckedLabelShadow = "#e5e7fa"; -export const ColorOptionCardDisabledContent = "#cccccc"; -export const ColorOptionCardDisabledLabel = "#666666"; -export const ColorOverlayBackground = "#191919"; -export const ColorOverlayLoaderBackground = "#191919"; -export const ColorPasswordInputButtonHoverBackground = "#e6e6e6"; -export const ColorPhoneNumberButtonBorder = "#666666"; -export const ColorPhoneNumberListBackground = "#ffffff"; -export const ColorPhoneNumberItemBorder = "#b3b3b3"; -export const ColorPhoneNumberItemFocusBackground = "#e6e6e6"; -export const ColorProgressBackground = "#cccccc"; -export const ColorProgressIndicator = "#007bb4"; -export const ColorProgressPercentageDefault = "#191919"; -export const ColorProgressPercentageHalf = "#ffffff"; -export const ColorProgressBrandedIndicator = "#4d5bf5"; -export const ColorStarEmpty = "#ffffff"; -export const ColorStarFocus = "#0b96cc"; -export const ColorStarFull = "#ea7315"; -export const ColorStarHover = "#f4b27e"; -export const ColorStepperItemBackground = "#999999"; -export const ColorStepperItemCurrentBackground = "#4d5bf5"; -export const ColorStepperLinkHoverText = "#4d5bf5"; -export const ColorStepperIndicatorBackground = "#ffffff"; -export const ColorStepperIndicatorBorder = "#999999"; -export const ColorStepperIndicatorCurrentBackground = "#4d5bf5"; -export const ColorStepperIndicatorCurrentBorder = "#4d5bf5"; -export const ColorStepperIcon = "#4d5bf5"; -export const ColorStepperTitle = "#4d5bf5"; -export const ColorTabsBackground = "#ffffff"; -export const ColorTabsShadow = "#000000"; -export const ColorTabsDefault = "#666666"; -export const ColorTabsElementBackground = "#ffe1d1"; -export const ColorTabsHover = "#130f7b"; -export const ColorTabsDisabledBackground = "#cccccc"; -export const ColorTabsActiveBackground = "#ffab80"; -export const ColorTabsActiveText = "#333333"; -export const ColorTabsSelectedBorder = "#000000"; -export const ColorTabsSelectedText = "#000000"; -export const ColorTabsActiveDisabled = "#b8bef4"; -export const ColorTagTextLightBackground = "#ffffff"; -export const ColorTagTextLightBorder = "#808080"; -export const ColorTagTextLightText = "#191919"; -export const ColorTagTextDarkBackground = "#191919"; -export const ColorTagTextDarkBorder = "#ffffff"; -export const ColorTagTextDarkText = "#ffffff"; -export const ColorTagLinkLightBackground = "#ffffff"; -export const ColorTagLinkLightBorder = "#808080"; -export const ColorTagLinkLightText = "#191919"; -export const ColorTagLinkLightHoverBackground = "#e6e6e6"; -export const ColorTagLinkLightActiveBackground = "#cccccc"; -export const ColorTagLinkDarkBackground = "#191919"; -export const ColorTagLinkDarkBorder = "#ffffff"; -export const ColorTagLinkDarkText = "#ffffff"; -export const ColorTagLinkDarkHoverBackground = "#333333"; -export const ColorTagLinkDarkActiveBackground = "#4d4d4d"; -export const ColorTagSelectableLightBackground = "#ffffff"; -export const ColorTagSelectableLightBorder = "#808080"; -export const ColorTagSelectableLightText = "#191919"; -export const ColorTagSelectableLightHoverBackground = "#8792ed"; -export const ColorTagSelectableLightActiveBackground = "#130f7b"; -export const ColorTagSelectableLightActiveBorder = "#130f7b"; -export const ColorTagSelectableLightActiveText = "#ffffff"; -export const ColorTagSelectableLightDisabledBackground = "#e6e6e6"; -export const ColorTagSelectableLightDisabledText = "#808080"; -export const ColorTagSelectableLightSelectedBackground = "#373de7"; -export const ColorTagSelectableLightSelectedText = "#ffffff"; -export const ColorTagSelectableLightSelectedHoverBackground = "#161cb6"; -export const ColorTagSelectableDarkBackground = "#191919"; -export const ColorTagSelectableDarkBorder = "#ffffff"; -export const ColorTagSelectableDarkText = "#ffffff"; -export const ColorTagSelectableDarkHoverBackground = "#161cb6"; -export const ColorTagSelectableDarkActiveBackground = "#b8bef4"; -export const ColorTagSelectableDarkActiveBorder = "#b8bef4"; -export const ColorTagSelectableDarkActiveText = "#191919"; -export const ColorTagSelectableDarkSelectedBackground = "#6875e8"; -export const ColorTagSelectableDarkSelectedBorder = "#6875e8"; -export const ColorTagSelectableDarkSelectedText = "#191919"; -export const ColorTagSelectableDarkSelectedHoverBackground = "#8792ed"; -export const ColorTagSelectableDarkDisabledBackground = "#4d4d4d"; -export const ColorTagSelectableDarkDisabledText = "#808080"; -export const ColorTagRemovableLightBackground = "#333333"; -export const ColorTagRemovableLightText = "#ffffff"; -export const ColorTagRemovableLightIcon = "#cccccc"; -export const ColorTagRemovableLightHoverBackground = "#4d4d4d"; -export const ColorTagRemovableLightActiveBackground = "#666666"; -export const ColorTagRemovableDarkBackground = "#cccccc"; -export const ColorTagRemovableDarkText = "#191919"; -export const ColorTagRemovableDarkIcon = "#191919"; -export const ColorTagRemovableDarkHoverBackground = "#b3b3b3"; -export const ColorTagRemovableDarkActiveBackground = "#999999"; -export const ColorToggleLabel = "#000000"; -export const ColorToggleOffBackground = "#808080"; -export const ColorToggleOffCircle = "#ffffff"; -export const ColorToggleOnBackground = "#ff5800"; -export const ColorToggleOnCircle = "#ffffff"; -export const ColorToggleHoverCircle = "#e6e6e6"; -export const ColorToggleDisabledBackground = "#e6e6e6"; -export const ColorToggleDisabledCircle = "#b3b3b3"; -export const ColorToggleDisabledLabel = "#808080"; -export const ColorToggleDisabledCheckedBackground = "#b8bef4"; -export const ColorToggleDisabledCheckedCircle = "#ffffff"; -export const ColorTooltipBackground = "#4d4d4d"; -export const ColorTooltipBorder = "#ffffff"; -export const FontFamily = "LeroyMerlin"; -export const FontWeightLight = 300; -export const FontWeightRegular = 400; -export const FontWeightSemiBold = 600; -export const Preset = "bricoman"; -export const RadiusS = 2; -export const RadiusM = 4; -export const RadiusL = 6; -export const ShadowSX = "0px"; -export const ShadowSY = "1px"; -export const ShadowSBlur = "5px"; -export const ShadowSSpread = "0px"; -export const ShadowSOpacity = "0.2"; -export const ShadowMX = "0px"; -export const ShadowMY = "2px"; -export const ShadowMBlur = "10px"; -export const ShadowMSpread = "0px"; -export const ShadowMOpacity = "0.2"; -export const ShadowLX = "0px"; -export const ShadowLY = "4px"; -export const ShadowLBlur = "20px"; -export const ShadowLSpread = "0px"; -export const ShadowLOpacity = "0.2"; -export const MagicUnit = 1; -export const LocalRemValue = 16; -export const SizeFont10 = "2.5625rem"; // 41px -export const SizeFont11 = "3.0625rem"; // 49px -export const SizeFont12 = "3.6875rem"; // 59px -export const SizeFont01 = "0.6815rem"; // 11px -export const SizeFont02 = "0.75rem"; // 12px -export const SizeFont03 = "0.8125rem"; // 13px -export const SizeFont04 = "0.875rem"; // 14px -export const SizeFont05 = "1rem"; // 16px -export const SizeFont06 = "1.125rem"; // 18px -export const SizeFont07 = "1.4375rem"; // 23px -export const SizeFont08 = "1.75rem"; // 28px -export const SizeFont09 = "2.125rem"; // 34px -export const SizeLine10Xs = "2.5rem"; // 40px -export const SizeLine10S = "3rem"; // 48px -export const SizeLine10M = "3.5rem"; // 56px -export const SizeLine10L = "3.75rem"; // 60px -export const SizeLine11Xs = "3rem"; // 48px -export const SizeLine11S = "3.5rem"; // 56px -export const SizeLine11M = "4.25rem"; // 68px -export const SizeLine11L = "4.5rem"; // 72px -export const SizeLine12Xs = "3.75rem"; // 60px -export const SizeLine12S = "4.25rem"; // 68px -export const SizeLine12M = "5rem"; // 80px -export const SizeLine12L = "5.5rem"; // 88px -export const SizeLine01Xs = "0.75rem"; // 12px -export const SizeLine01S = "0.75rem"; // 12px -export const SizeLine01M = "0.875rem"; // 14px -export const SizeLine01L = "1rem"; // 16px -export const SizeLine02Xs = "0.75rem"; // 12px -export const SizeLine02S = "0.875rem"; // 14px -export const SizeLine02M = "1rem"; // 16px -export const SizeLine02L = "1.125rem"; // 18px -export const SizeLine03Xs = "0.875rem"; // 14px -export const SizeLine03S = "1rem"; // 16px -export const SizeLine03M = "1.125rem"; // 18px -export const SizeLine03L = "1.25rem"; // 20px -export const SizeLine04Xs = "0.875rem"; // 14px -export const SizeLine04S = "1rem"; // 16px -export const SizeLine04M = "1.125rem"; // 18px -export const SizeLine04L = "1.375rem"; // 22px -export const SizeLine05Xs = "1rem"; // 16px -export const SizeLine05S = "1.125rem"; // 18px -export const SizeLine05M = "1.375rem"; // 22px -export const SizeLine05L = "1.5rem"; // 24px -export const SizeLine06Xs = "1.125rem"; // 18px -export const SizeLine06S = "1.25rem"; // 20px -export const SizeLine06M = "1.5rem"; // 24px -export const SizeLine06L = "1.75rem"; // 28px -export const SizeLine07Xs = "1.5rem"; // 24px -export const SizeLine07S = "1.75rem"; // 28px -export const SizeLine07M = "2rem"; // 32px -export const SizeLine07L = "2.25rem"; // 36px -export const SizeLine08Xs = "1.75rem"; // 28px -export const SizeLine08S = "2rem"; // 32px -export const SizeLine08M = "2.25rem"; // 36px -export const SizeLine08L = "2.75rem"; // 44px -export const SizeLine09Xs = "2.25rem"; // 36px -export const SizeLine09S = "2.5rem"; // 40px -export const SizeLine09M = "2.75rem"; // 44px -export const SizeLine09L = "3.25rem"; // 52px -export const SizeGutterScreenS = "1rem"; -export const SizeGutterScreenM = "2rem"; -export const ScreenS = "0px"; -export const ScreenSMedium = "320px"; -export const ScreenSLarge = "360px"; -export const ScreenSXlarge = "390px"; -export const ScreenM = "680px"; -export const ScreenMMedium = "769px"; -export const ScreenL = "1024px"; -export const ScreenLMedium = "1100px"; -export const ScreenXl = "1280px"; -export const ScreenXlMedium = "1440px"; -export const ScreenXlLarge = "1680px"; -export const ScreenXxl = "1920px"; \ No newline at end of file diff --git a/packages/tokens/build/bricoman/js/tokensObject.js b/packages/tokens/build/bricoman/js/tokensObject.js deleted file mode 100644 index dd4101abd..000000000 --- a/packages/tokens/build/bricoman/js/tokensObject.js +++ /dev/null @@ -1,12057 +0,0 @@ -module.exports = { - "border": { - "s": { - "value": 1, - "filePath": "packages/tokens/src/tokens/leroymerlin/border/base.json", - "isSource": true, - "original": { - "value": 1 - }, - "name": "BorderS", - "attributes": { - "category": "border", - "type": "s" - }, - "path": [ - "border", - "s" - ] - }, - "m": { - "value": 2, - "filePath": "packages/tokens/src/tokens/leroymerlin/border/base.json", - "isSource": true, - "original": { - "value": 2 - }, - "name": "BorderM", - "attributes": { - "category": "border", - "type": "m" - }, - "path": [ - "border", - "m" - ] - }, - "l": { - "value": 3, - "filePath": "packages/tokens/src/tokens/leroymerlin/border/base.json", - "isSource": true, - "original": { - "value": 3 - }, - "name": "BorderL", - "attributes": { - "category": "border", - "type": "l" - }, - "path": [ - "border", - "l" - ] - } - }, - "color": { - "badge": { - "info": { - "background": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.info.100.value}" - }, - "name": "ColorBadgeInfoBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "info", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "info", - "background" - ] - }, - "border": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.info.500.value}" - }, - "name": "ColorBadgeInfoBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "info", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "info", - "border" - ] - }, - "text": { - "value": "#005c91", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.info.700.value}" - }, - "name": "ColorBadgeInfoText", - "attributes": { - "category": "color", - "type": "badge", - "item": "info", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "info", - "text" - ] - } - }, - "success": { - "background": { - "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.success.100.value}" - }, - "name": "ColorBadgeSuccessBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "success", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "success", - "background" - ] - }, - "border": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.success.500.value}" - }, - "name": "ColorBadgeSuccessBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "success", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "success", - "border" - ] - }, - "text": { - "value": "#006902", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.success.700.value}" - }, - "name": "ColorBadgeSuccessText", - "attributes": { - "category": "color", - "type": "badge", - "item": "success", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "success", - "text" - ] - } - }, - "warning": { - "background": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.warning.100.value}" - }, - "name": "ColorBadgeWarningBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "warning", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "warning", - "background" - ] - }, - "border": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.warning.500.value}" - }, - "name": "ColorBadgeWarningBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "warning", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "warning", - "border" - ] - }, - "text": { - "value": "#8c3500", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.warning.700.value}" - }, - "name": "ColorBadgeWarningText", - "attributes": { - "category": "color", - "type": "badge", - "item": "warning", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "warning", - "text" - ] - } - }, - "danger": { - "background": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.danger.100.value}" - }, - "name": "ColorBadgeDangerBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "danger", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "danger", - "background" - ] - }, - "border": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.danger.500.value}" - }, - "name": "ColorBadgeDangerBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "danger", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "danger", - "border" - ] - }, - "text": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorBadgeDangerText", - "attributes": { - "category": "color", - "type": "badge", - "item": "danger", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "danger", - "text" - ] - } - }, - "neutral": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorBadgeNeutralBackground", - "attributes": { - "category": "color", - "type": "badge", - "item": "neutral", - "subitem": "background" - }, - "path": [ - "color", - "badge", - "neutral", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorBadgeNeutralBorder", - "attributes": { - "category": "color", - "type": "badge", - "item": "neutral", - "subitem": "border" - }, - "path": [ - "color", - "badge", - "neutral", - "border" - ] - }, - "text": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/badge.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorBadgeNeutralText", - "attributes": { - "category": "color", - "type": "badge", - "item": "neutral", - "subitem": "text" - }, - "path": [ - "color", - "badge", - "neutral", - "text" - ] - } - } - }, - "primary-01": { - "100": { - "value": "#e5e7fa", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#E5E7FA" - }, - "name": "ColorPrimary01100", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "100" - }, - "path": [ - "color", - "primary-01", - "100" - ] - }, - "200": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#B8BEF4" - }, - "name": "ColorPrimary01200", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "200" - }, - "path": [ - "color", - "primary-01", - "200" - ] - }, - "300": { - "value": "#8792ed", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#8792ED" - }, - "name": "ColorPrimary01300", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "300" - }, - "path": [ - "color", - "primary-01", - "300" - ] - }, - "400": { - "value": "#6875e8", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#6875E8" - }, - "name": "ColorPrimary01400", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "400" - }, - "path": [ - "color", - "primary-01", - "400" - ] - }, - "500": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#4D5BF5" - }, - "name": "ColorPrimary01500", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "500" - }, - "path": [ - "color", - "primary-01", - "500" - ] - }, - "600": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#373DE7" - }, - "name": "ColorPrimary01600", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "600" - }, - "path": [ - "color", - "primary-01", - "600" - ] - }, - "700": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#161CB6" - }, - "name": "ColorPrimary01700", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "700" - }, - "path": [ - "color", - "primary-01", - "700" - ] - }, - "800": { - "value": "#130f7b", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#130F7B" - }, - "name": "ColorPrimary01800", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "800" - }, - "path": [ - "color", - "primary-01", - "800" - ] - }, - "900": { - "value": "#120949", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#120949" - }, - "name": "ColorPrimary01900", - "attributes": { - "category": "color", - "type": "primary-01", - "item": "900" - }, - "path": [ - "color", - "primary-01", - "900" - ] - } - }, - "primary-02": { - "100": { - "value": "#ffe1d1", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FFE1D1" - }, - "name": "ColorPrimary02100", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "100" - }, - "path": [ - "color", - "primary-02", - "100" - ] - }, - "200": { - "value": "#ffab80", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FFAB80" - }, - "name": "ColorPrimary02200", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "200" - }, - "path": [ - "color", - "primary-02", - "200" - ] - }, - "300": { - "value": "#ff7933", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FF7933" - }, - "name": "ColorPrimary02300", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "300" - }, - "path": [ - "color", - "primary-02", - "300" - ] - }, - "400": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FF5800" - }, - "name": "ColorPrimary02400", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "400" - }, - "path": [ - "color", - "primary-02", - "400" - ] - }, - "500": { - "value": "#e54f00", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#E54F00" - }, - "name": "ColorPrimary02500", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "500" - }, - "path": [ - "color", - "primary-02", - "500" - ] - }, - "600": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#B83F00" - }, - "name": "ColorPrimary02600", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "600" - }, - "path": [ - "color", - "primary-02", - "600" - ] - }, - "700": { - "value": "#943300", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#943300" - }, - "name": "ColorPrimary02700", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "700" - }, - "path": [ - "color", - "primary-02", - "700" - ] - }, - "800": { - "value": "#702700", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#702700" - }, - "name": "ColorPrimary02800", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "800" - }, - "path": [ - "color", - "primary-02", - "800" - ] - }, - "900": { - "value": "#421700", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#421700" - }, - "name": "ColorPrimary02900", - "attributes": { - "category": "color", - "type": "primary-02", - "item": "900" - }, - "path": [ - "color", - "primary-02", - "900" - ] - } - }, - "grey": { - "100": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#E6E6E6" - }, - "name": "ColorGrey100", - "attributes": { - "category": "color", - "type": "grey", - "item": "100" - }, - "path": [ - "color", - "grey", - "100" - ] - }, - "200": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#CCCCCC" - }, - "name": "ColorGrey200", - "attributes": { - "category": "color", - "type": "grey", - "item": "200" - }, - "path": [ - "color", - "grey", - "200" - ] - }, - "300": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#B3B3B3" - }, - "name": "ColorGrey300", - "attributes": { - "category": "color", - "type": "grey", - "item": "300" - }, - "path": [ - "color", - "grey", - "300" - ] - }, - "400": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#999999" - }, - "name": "ColorGrey400", - "attributes": { - "category": "color", - "type": "grey", - "item": "400" - }, - "path": [ - "color", - "grey", - "400" - ] - }, - "500": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#808080" - }, - "name": "ColorGrey500", - "attributes": { - "category": "color", - "type": "grey", - "item": "500" - }, - "path": [ - "color", - "grey", - "500" - ] - }, - "600": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#666666" - }, - "name": "ColorGrey600", - "attributes": { - "category": "color", - "type": "grey", - "item": "600" - }, - "path": [ - "color", - "grey", - "600" - ] - }, - "700": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#4D4D4D" - }, - "name": "ColorGrey700", - "attributes": { - "category": "color", - "type": "grey", - "item": "700" - }, - "path": [ - "color", - "grey", - "700" - ] - }, - "800": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#333333" - }, - "name": "ColorGrey800", - "attributes": { - "category": "color", - "type": "grey", - "item": "800" - }, - "path": [ - "color", - "grey", - "800" - ] - }, - "900": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#191919" - }, - "name": "ColorGrey900", - "attributes": { - "category": "color", - "type": "grey", - "item": "900" - }, - "path": [ - "color", - "grey", - "900" - ] - }, - "999": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#000000" - }, - "name": "ColorGrey999", - "attributes": { - "category": "color", - "type": "grey", - "item": "999" - }, - "path": [ - "color", - "grey", - "999" - ] - }, - "000": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FFFFFF" - }, - "name": "ColorGrey000", - "attributes": { - "category": "color", - "type": "grey", - "item": "000" - }, - "path": [ - "color", - "grey", - "000" - ] - } - }, - "secondary-blue": { - "100": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#DAEFF7" - }, - "name": "ColorSecondaryBlue100", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "100" - }, - "path": [ - "color", - "secondary-blue", - "100" - ] - }, - "200": { - "value": "#a7d9ed", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#A7D9ED" - }, - "name": "ColorSecondaryBlue200", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "200" - }, - "path": [ - "color", - "secondary-blue", - "200" - ] - }, - "300": { - "value": "#73c3e2", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#73C3E2" - }, - "name": "ColorSecondaryBlue300", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "300" - }, - "path": [ - "color", - "secondary-blue", - "300" - ] - }, - "400": { - "value": "#3facd7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#3FACD7" - }, - "name": "ColorSecondaryBlue400", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "400" - }, - "path": [ - "color", - "secondary-blue", - "400" - ] - }, - "500": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#0B96CC" - }, - "name": "ColorSecondaryBlue500", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "500" - }, - "path": [ - "color", - "secondary-blue", - "500" - ] - }, - "600": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#007BB4" - }, - "name": "ColorSecondaryBlue600", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "600" - }, - "path": [ - "color", - "secondary-blue", - "600" - ] - }, - "700": { - "value": "#005c91", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#005C91" - }, - "name": "ColorSecondaryBlue700", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "700" - }, - "path": [ - "color", - "secondary-blue", - "700" - ] - }, - "800": { - "value": "#003a5c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#003A5C" - }, - "name": "ColorSecondaryBlue800", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "800" - }, - "path": [ - "color", - "secondary-blue", - "800" - ] - }, - "900": { - "value": "#002a41", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#002A41" - }, - "name": "ColorSecondaryBlue900", - "attributes": { - "category": "color", - "type": "secondary-blue", - "item": "900" - }, - "path": [ - "color", - "secondary-blue", - "900" - ] - } - }, - "secondary-green": { - "100": { - "value": "#e5e7fa", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorSecondaryGreen100", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "100" - }, - "path": [ - "color", - "secondary-green", - "100" - ] - }, - "200": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorSecondaryGreen200", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "200" - }, - "path": [ - "color", - "secondary-green", - "200" - ] - }, - "300": { - "value": "#8792ed", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.300.value}" - }, - "name": "ColorSecondaryGreen300", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "300" - }, - "path": [ - "color", - "secondary-green", - "300" - ] - }, - "400": { - "value": "#6875e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.400.value}" - }, - "name": "ColorSecondaryGreen400", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "400" - }, - "path": [ - "color", - "secondary-green", - "400" - ] - }, - "500": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorSecondaryGreen500", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "500" - }, - "path": [ - "color", - "secondary-green", - "500" - ] - }, - "600": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorSecondaryGreen600", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "600" - }, - "path": [ - "color", - "secondary-green", - "600" - ] - }, - "700": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorSecondaryGreen700", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "700" - }, - "path": [ - "color", - "secondary-green", - "700" - ] - }, - "800": { - "value": "#130f7b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorSecondaryGreen800", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "800" - }, - "path": [ - "color", - "secondary-green", - "800" - ] - }, - "900": { - "value": "#120949", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "{color.primary-01.900.value}" - }, - "name": "ColorSecondaryGreen900", - "attributes": { - "category": "color", - "type": "secondary-green", - "item": "900" - }, - "path": [ - "color", - "secondary-green", - "900" - ] - } - }, - "secondary-purple": { - "100": { - "value": "#efebfe", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EFEBFE" - }, - "name": "ColorSecondaryPurple100", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "100" - }, - "path": [ - "color", - "secondary-purple", - "100" - ] - }, - "200": { - "value": "#c7b0fa", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C7B0FA" - }, - "name": "ColorSecondaryPurple200", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "200" - }, - "path": [ - "color", - "secondary-purple", - "200" - ] - }, - "300": { - "value": "#a575f3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#A575F3" - }, - "name": "ColorSecondaryPurple300", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "300" - }, - "path": [ - "color", - "secondary-purple", - "300" - ] - }, - "400": { - "value": "#883be9", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#883BE9" - }, - "name": "ColorSecondaryPurple400", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "400" - }, - "path": [ - "color", - "secondary-purple", - "400" - ] - }, - "500": { - "value": "#7000dd", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#7000DD" - }, - "name": "ColorSecondaryPurple500", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "500" - }, - "path": [ - "color", - "secondary-purple", - "500" - ] - }, - "600": { - "value": "#5803b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#5803B3" - }, - "name": "ColorSecondaryPurple600", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "600" - }, - "path": [ - "color", - "secondary-purple", - "600" - ] - }, - "700": { - "value": "#42058a", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#42058A" - }, - "name": "ColorSecondaryPurple700", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "700" - }, - "path": [ - "color", - "secondary-purple", - "700" - ] - }, - "800": { - "value": "#2e0663", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#2E0663" - }, - "name": "ColorSecondaryPurple800", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "800" - }, - "path": [ - "color", - "secondary-purple", - "800" - ] - }, - "900": { - "value": "#1c053d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#1C053D" - }, - "name": "ColorSecondaryPurple900", - "attributes": { - "category": "color", - "type": "secondary-purple", - "item": "900" - }, - "path": [ - "color", - "secondary-purple", - "900" - ] - } - }, - "secondary-red": { - "100": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FDEAEA" - }, - "name": "ColorSecondaryRed100", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "100" - }, - "path": [ - "color", - "secondary-red", - "100" - ] - }, - "200": { - "value": "#f8bcbb", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F8BCBB" - }, - "name": "ColorSecondaryRed200", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "200" - }, - "path": [ - "color", - "secondary-red", - "200" - ] - }, - "300": { - "value": "#f38d8c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F38D8C" - }, - "name": "ColorSecondaryRed300", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "300" - }, - "path": [ - "color", - "secondary-red", - "300" - ] - }, - "400": { - "value": "#ef5f5c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EF5F5C" - }, - "name": "ColorSecondaryRed400", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "400" - }, - "path": [ - "color", - "secondary-red", - "400" - ] - }, - "500": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EA302D" - }, - "name": "ColorSecondaryRed500", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "500" - }, - "path": [ - "color", - "secondary-red", - "500" - ] - }, - "600": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C61112" - }, - "name": "ColorSecondaryRed600", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "600" - }, - "path": [ - "color", - "secondary-red", - "600" - ] - }, - "700": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#8C0003" - }, - "name": "ColorSecondaryRed700", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "700" - }, - "path": [ - "color", - "secondary-red", - "700" - ] - }, - "800": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#530000" - }, - "name": "ColorSecondaryRed800", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "800" - }, - "path": [ - "color", - "secondary-red", - "800" - ] - }, - "900": { - "value": "#2d0000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#2D0000" - }, - "name": "ColorSecondaryRed900", - "attributes": { - "category": "color", - "type": "secondary-red", - "item": "900" - }, - "path": [ - "color", - "secondary-red", - "900" - ] - } - }, - "secondary-orange": { - "100": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FDF1E8" - }, - "name": "ColorSecondaryOrange100", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "100" - }, - "path": [ - "color", - "secondary-orange", - "100" - ] - }, - "200": { - "value": "#f8d2b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F8D2B3" - }, - "name": "ColorSecondaryOrange200", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "200" - }, - "path": [ - "color", - "secondary-orange", - "200" - ] - }, - "300": { - "value": "#f4b27e", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F4B27E" - }, - "name": "ColorSecondaryOrange300", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "300" - }, - "path": [ - "color", - "secondary-orange", - "300" - ] - }, - "400": { - "value": "#ef934a", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EF934A" - }, - "name": "ColorSecondaryOrange400", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "400" - }, - "path": [ - "color", - "secondary-orange", - "400" - ] - }, - "500": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#EA7315" - }, - "name": "ColorSecondaryOrange500", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "500" - }, - "path": [ - "color", - "secondary-orange", - "500" - ] - }, - "600": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C65200" - }, - "name": "ColorSecondaryOrange600", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "600" - }, - "path": [ - "color", - "secondary-orange", - "600" - ] - }, - "700": { - "value": "#8c3500", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#8C3500" - }, - "name": "ColorSecondaryOrange700", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "700" - }, - "path": [ - "color", - "secondary-orange", - "700" - ] - }, - "800": { - "value": "#531b00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#531B00" - }, - "name": "ColorSecondaryOrange800", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "800" - }, - "path": [ - "color", - "secondary-orange", - "800" - ] - }, - "900": { - "value": "#360e00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#360E00" - }, - "name": "ColorSecondaryOrange900", - "attributes": { - "category": "color", - "type": "secondary-orange", - "item": "900" - }, - "path": [ - "color", - "secondary-orange", - "900" - ] - } - }, - "secondary-yellow": { - "100": { - "value": "#fff8e2", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FFF8E2" - }, - "name": "ColorSecondaryYellow100", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "100" - }, - "path": [ - "color", - "secondary-yellow", - "100" - ] - }, - "200": { - "value": "#ffebaf", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FFEBAF" - }, - "name": "ColorSecondaryYellow200", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "200" - }, - "path": [ - "color", - "secondary-yellow", - "200" - ] - }, - "300": { - "value": "#fee07d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FEE07D" - }, - "name": "ColorSecondaryYellow300", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "300" - }, - "path": [ - "color", - "secondary-yellow", - "300" - ] - }, - "400": { - "value": "#fcd64c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#FCD64C" - }, - "name": "ColorSecondaryYellow400", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "400" - }, - "path": [ - "color", - "secondary-yellow", - "400" - ] - }, - "500": { - "value": "#f8cc1c", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#F8CC1C" - }, - "name": "ColorSecondaryYellow500", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "500" - }, - "path": [ - "color", - "secondary-yellow", - "500" - ] - }, - "600": { - "value": "#c9a21b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#C9A21B" - }, - "name": "ColorSecondaryYellow600", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "600" - }, - "path": [ - "color", - "secondary-yellow", - "600" - ] - }, - "700": { - "value": "#9c7b18", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#9C7B18" - }, - "name": "ColorSecondaryYellow700", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "700" - }, - "path": [ - "color", - "secondary-yellow", - "700" - ] - }, - "800": { - "value": "#705613", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#705613" - }, - "name": "ColorSecondaryYellow800", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "800" - }, - "path": [ - "color", - "secondary-yellow", - "800" - ] - }, - "900": { - "value": "#46350d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/base.json", - "isSource": true, - "original": { - "value": "#46350D" - }, - "name": "ColorSecondaryYellow900", - "attributes": { - "category": "color", - "type": "secondary-yellow", - "item": "900" - }, - "path": [ - "color", - "secondary-yellow", - "900" - ] - } - }, - "danger": { - "100": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FDEAEA" - }, - "name": "ColorDanger100", - "attributes": { - "category": "color", - "type": "danger", - "item": "100" - }, - "path": [ - "color", - "danger", - "100" - ] - }, - "200": { - "value": "#f8bcbb", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#F8BCBB" - }, - "name": "ColorDanger200", - "attributes": { - "category": "color", - "type": "danger", - "item": "200" - }, - "path": [ - "color", - "danger", - "200" - ] - }, - "300": { - "value": "#f38d8c", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#F38D8C" - }, - "name": "ColorDanger300", - "attributes": { - "category": "color", - "type": "danger", - "item": "300" - }, - "path": [ - "color", - "danger", - "300" - ] - }, - "400": { - "value": "#ef5f5c", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#EF5F5C" - }, - "name": "ColorDanger400", - "attributes": { - "category": "color", - "type": "danger", - "item": "400" - }, - "path": [ - "color", - "danger", - "400" - ] - }, - "500": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#EA302D" - }, - "name": "ColorDanger500", - "attributes": { - "category": "color", - "type": "danger", - "item": "500" - }, - "path": [ - "color", - "danger", - "500" - ] - }, - "600": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#C61112" - }, - "name": "ColorDanger600", - "attributes": { - "category": "color", - "type": "danger", - "item": "600" - }, - "path": [ - "color", - "danger", - "600" - ] - }, - "700": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#8C0003" - }, - "name": "ColorDanger700", - "attributes": { - "category": "color", - "type": "danger", - "item": "700" - }, - "path": [ - "color", - "danger", - "700" - ] - }, - "800": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#530000" - }, - "name": "ColorDanger800", - "attributes": { - "category": "color", - "type": "danger", - "item": "800" - }, - "path": [ - "color", - "danger", - "800" - ] - }, - "900": { - "value": "#2d0000", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#2D0000" - }, - "name": "ColorDanger900", - "attributes": { - "category": "color", - "type": "danger", - "item": "900" - }, - "path": [ - "color", - "danger", - "900" - ] - } - }, - "info": { - "100": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#DAEFF7" - }, - "name": "ColorInfo100", - "attributes": { - "category": "color", - "type": "info", - "item": "100" - }, - "path": [ - "color", - "info", - "100" - ] - }, - "200": { - "value": "#a7d9ed", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#A7D9ED" - }, - "name": "ColorInfo200", - "attributes": { - "category": "color", - "type": "info", - "item": "200" - }, - "path": [ - "color", - "info", - "200" - ] - }, - "300": { - "value": "#73c3e2", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#73C3E2" - }, - "name": "ColorInfo300", - "attributes": { - "category": "color", - "type": "info", - "item": "300" - }, - "path": [ - "color", - "info", - "300" - ] - }, - "400": { - "value": "#3facd7", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#3FACD7" - }, - "name": "ColorInfo400", - "attributes": { - "category": "color", - "type": "info", - "item": "400" - }, - "path": [ - "color", - "info", - "400" - ] - }, - "500": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#0B96CC" - }, - "name": "ColorInfo500", - "attributes": { - "category": "color", - "type": "info", - "item": "500" - }, - "path": [ - "color", - "info", - "500" - ] - }, - "600": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#007BB4" - }, - "name": "ColorInfo600", - "attributes": { - "category": "color", - "type": "info", - "item": "600" - }, - "path": [ - "color", - "info", - "600" - ] - }, - "700": { - "value": "#005c91", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#005C91" - }, - "name": "ColorInfo700", - "attributes": { - "category": "color", - "type": "info", - "item": "700" - }, - "path": [ - "color", - "info", - "700" - ] - }, - "800": { - "value": "#003a5c", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#003A5C" - }, - "name": "ColorInfo800", - "attributes": { - "category": "color", - "type": "info", - "item": "800" - }, - "path": [ - "color", - "info", - "800" - ] - }, - "900": { - "value": "#002a41", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#002A41" - }, - "name": "ColorInfo900", - "attributes": { - "category": "color", - "type": "info", - "item": "900" - }, - "path": [ - "color", - "info", - "900" - ] - } - }, - "warning": { - "100": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#FDF1E8" - }, - "name": "ColorWarning100", - "attributes": { - "category": "color", - "type": "warning", - "item": "100" - }, - "path": [ - "color", - "warning", - "100" - ] - }, - "200": { - "value": "#f8d2b3", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#F8D2B3" - }, - "name": "ColorWarning200", - "attributes": { - "category": "color", - "type": "warning", - "item": "200" - }, - "path": [ - "color", - "warning", - "200" - ] - }, - "300": { - "value": "#f4b27e", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#F4B27E" - }, - "name": "ColorWarning300", - "attributes": { - "category": "color", - "type": "warning", - "item": "300" - }, - "path": [ - "color", - "warning", - "300" - ] - }, - "400": { - "value": "#ef934a", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#EF934A" - }, - "name": "ColorWarning400", - "attributes": { - "category": "color", - "type": "warning", - "item": "400" - }, - "path": [ - "color", - "warning", - "400" - ] - }, - "500": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#EA7315" - }, - "name": "ColorWarning500", - "attributes": { - "category": "color", - "type": "warning", - "item": "500" - }, - "path": [ - "color", - "warning", - "500" - ] - }, - "600": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#C65200" - }, - "name": "ColorWarning600", - "attributes": { - "category": "color", - "type": "warning", - "item": "600" - }, - "path": [ - "color", - "warning", - "600" - ] - }, - "700": { - "value": "#8c3500", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#8C3500" - }, - "name": "ColorWarning700", - "attributes": { - "category": "color", - "type": "warning", - "item": "700" - }, - "path": [ - "color", - "warning", - "700" - ] - }, - "800": { - "value": "#531b00", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#531B00" - }, - "name": "ColorWarning800", - "attributes": { - "category": "color", - "type": "warning", - "item": "800" - }, - "path": [ - "color", - "warning", - "800" - ] - }, - "900": { - "value": "#360e00", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#360E00" - }, - "name": "ColorWarning900", - "attributes": { - "category": "color", - "type": "warning", - "item": "900" - }, - "path": [ - "color", - "warning", - "900" - ] - } - }, - "success": { - "100": { - "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#EBF5DE" - }, - "name": "ColorSuccess100", - "attributes": { - "category": "color", - "type": "success", - "item": "100" - }, - "path": [ - "color", - "success", - "100" - ] - }, - "200": { - "value": "#c5e39e", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#C5E39E" - }, - "name": "ColorSuccess200", - "attributes": { - "category": "color", - "type": "success", - "item": "200" - }, - "path": [ - "color", - "success", - "200" - ] - }, - "300": { - "value": "#9ed05f", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#9ED05F" - }, - "name": "ColorSuccess300", - "attributes": { - "category": "color", - "type": "success", - "item": "300" - }, - "path": [ - "color", - "success", - "300" - ] - }, - "400": { - "value": "#78be20", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#78BE20" - }, - "name": "ColorSuccess400", - "attributes": { - "category": "color", - "type": "success", - "item": "400" - }, - "path": [ - "color", - "success", - "400" - ] - }, - "500": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#46A610" - }, - "name": "ColorSuccess500", - "attributes": { - "category": "color", - "type": "success", - "item": "500" - }, - "path": [ - "color", - "success", - "500" - ] - }, - "600": { - "value": "#188803", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#188803" - }, - "name": "ColorSuccess600", - "attributes": { - "category": "color", - "type": "success", - "item": "600" - }, - "path": [ - "color", - "success", - "600" - ] - }, - "700": { - "value": "#006902", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#006902" - }, - "name": "ColorSuccess700", - "attributes": { - "category": "color", - "type": "success", - "item": "700" - }, - "path": [ - "color", - "success", - "700" - ] - }, - "800": { - "value": "#035010", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#035010" - }, - "name": "ColorSuccess800", - "attributes": { - "category": "color", - "type": "success", - "item": "800" - }, - "path": [ - "color", - "success", - "800" - ] - }, - "900": { - "value": "#023618", - "filePath": "packages/tokens/src/tokens/bricoman/color/base.json", - "isSource": true, - "original": { - "value": "#023618" - }, - "name": "ColorSuccess900", - "attributes": { - "category": "color", - "type": "success", - "item": "900" - }, - "path": [ - "color", - "success", - "900" - ] - } - }, - "breadcrumb": { - "arrow": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/breadcrumb.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorBreadcrumbArrow", - "attributes": { - "category": "color", - "type": "breadcrumb", - "item": "arrow" - }, - "path": [ - "color", - "breadcrumb", - "arrow" - ] - }, - "arrow-invert": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/breadcrumb.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorBreadcrumbArrowInvert", - "attributes": { - "category": "color", - "type": "breadcrumb", - "item": "arrow-invert" - }, - "path": [ - "color", - "breadcrumb", - "arrow-invert" - ] - } - }, - "button": { - "solid": { - "background": { - "value": "#120949", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.900.value}" - }, - "name": "ColorButtonSolidBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid", - "font" - ] - }, - "focus": { - "border": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonSolidFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonSolidActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonSolidHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid", - "hover", - "font" - ] - } - } - }, - "solid-primary-02": { - "background": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorButtonSolidPrimary02Background", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidPrimary02Font", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "font" - ] - }, - "focus": { - "border": { - "value": "#421700", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorButtonSolidPrimary02FocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidPrimary02DisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidPrimary02DisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#421700", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorButtonSolidPrimary02ActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorButtonSolidPrimary02HoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidPrimary02HoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-primary-02", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-primary-02", - "hover", - "font" - ] - } - } - }, - "solid-neutral": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonSolidNeutralBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidNeutralFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid-neutral", - "font" - ] - }, - "focus": { - "border": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorButtonSolidNeutralFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid-neutral", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidNeutralDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidNeutralDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-neutral", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonSolidNeutralActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorButtonSolidNeutralHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-neutral", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidNeutralHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-neutral", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-neutral", - "hover", - "font" - ] - } - } - }, - "solid-danger": { - "background": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorButtonSolidDangerBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidDangerFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "font" - }, - "path": [ - "color", - "button", - "solid-danger", - "font" - ] - }, - "focus": { - "border": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonSolidDangerFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "solid-danger", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonSolidDangerDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonSolidDangerDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-danger", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonSolidDangerActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonSolidDangerHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "solid-danger", - "hover", - "background" - ] - }, - "font": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonSolidDangerHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "solid-danger", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "solid-danger", - "hover", - "font" - ] - } - } - }, - "bordered": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered", - "background" - ] - }, - "border": { - "value": "#120949", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.900.value}" - }, - "name": "ColorButtonBorderedBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered", - "border" - ] - }, - "font": { - "value": "#120949", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.900.value}" - }, - "name": "ColorButtonBorderedFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered", - "font" - ] - }, - "focus": { - "border": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonBorderedFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorButtonBorderedActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered", - "active", - "background" - ] - }, - "font": { - "value": "#130f7b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorButtonBorderedActiveFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "active", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered", - "active", - "font" - ] - } - }, - "hover": { - "background": { - "value": "#e5e7fa", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorButtonBorderedHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered", - "hover", - "background" - ] - }, - "font": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorButtonBorderedHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered", - "hover", - "font" - ] - } - } - }, - "bordered-primary-02": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedPrimary02Background", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "background" - ] - }, - "border": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorButtonBorderedPrimary02Border", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "border" - ] - }, - "font": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorButtonBorderedPrimary02Font", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "font" - ] - }, - "focus": { - "border": { - "value": "#421700", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorButtonBorderedPrimary02FocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedPrimary02DisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedPrimary02DisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#ffab80", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.200.value}" - }, - "name": "ColorButtonBorderedPrimary02ActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#ffe1d1", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.primary-02.100.value}" - }, - "name": "ColorButtonBorderedPrimary02HoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-primary-02", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-primary-02", - "hover", - "background" - ] - } - } - }, - "bordered-neutral": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedNeutralBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "background" - ] - }, - "border": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonBorderedNeutralBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "border" - ] - }, - "font": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorButtonBorderedNeutralFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "font" - ] - }, - "focus": { - "border": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorButtonBorderedNeutralFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedNeutralDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedNeutralDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedNeutralActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "active", - "background" - ] - } - }, - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorButtonBorderedNeutralHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-neutral", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-neutral", - "hover", - "background" - ] - } - } - }, - "bordered-danger": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorButtonBorderedDangerBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "background" - ] - }, - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorButtonBorderedDangerBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "border" - }, - "path": [ - "color", - "button", - "bordered-danger", - "border" - ] - }, - "font": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorButtonBorderedDangerFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "font" - ] - }, - "focus": { - "border": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.700.value}" - }, - "name": "ColorButtonBorderedDangerFocusBorder", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "focus", - "state": "border" - }, - "path": [ - "color", - "button", - "bordered-danger", - "focus", - "border" - ] - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorButtonBorderedDangerDisabledBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "disabled", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "disabled", - "background" - ] - }, - "font": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorButtonBorderedDangerDisabledFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "disabled", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "disabled", - "font" - ] - } - }, - "active": { - "background": { - "value": "#f8bcbb", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.200.value}" - }, - "name": "ColorButtonBorderedDangerActiveBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "active", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "active", - "background" - ] - }, - "font": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.800.value}" - }, - "name": "ColorButtonBorderedDangerActiveFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "active", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "active", - "font" - ] - } - }, - "hover": { - "background": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.100.value}" - }, - "name": "ColorButtonBorderedDangerHoverBackground", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "button", - "bordered-danger", - "hover", - "background" - ] - }, - "font": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/button.json", - "isSource": true, - "original": { - "value": "{color.danger.700.value}" - }, - "name": "ColorButtonBorderedDangerHoverFont", - "attributes": { - "category": "color", - "type": "button", - "item": "bordered-danger", - "subitem": "hover", - "state": "font" - }, - "path": [ - "color", - "button", - "bordered-danger", - "hover", - "font" - ] - } - } - } - }, - "card": { - "bordered": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/card.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorCardBorderedBackground", - "attributes": { - "category": "color", - "type": "card", - "item": "bordered", - "subitem": "background" - }, - "path": [ - "color", - "card", - "bordered", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/card.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorCardBorderedBorder", - "attributes": { - "category": "color", - "type": "card", - "item": "bordered", - "subitem": "border" - }, - "path": [ - "color", - "card", - "bordered", - "border" - ] - } - } - }, - "datatable": { - "filters": { - "border": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorDatatableFiltersBorder", - "attributes": { - "category": "color", - "type": "datatable", - "item": "filters", - "subitem": "border" - }, - "path": [ - "color", - "datatable", - "filters", - "border" - ] - } - }, - "container": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorDatatableContainerBackground", - "attributes": { - "category": "color", - "type": "datatable", - "item": "container", - "subitem": "background" - }, - "path": [ - "color", - "datatable", - "container", - "background" - ] - } - }, - "thead": { - "font": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorDatatableTheadFont", - "attributes": { - "category": "color", - "type": "datatable", - "item": "thead", - "subitem": "font" - }, - "path": [ - "color", - "datatable", - "thead", - "font" - ] - } - }, - "sort-arrow": { - "default": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorDatatableSortArrowDefault", - "attributes": { - "category": "color", - "type": "datatable", - "item": "sort-arrow", - "subitem": "default" - }, - "path": [ - "color", - "datatable", - "sort-arrow", - "default" - ] - }, - "active": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorDatatableSortArrowActive", - "attributes": { - "category": "color", - "type": "datatable", - "item": "sort-arrow", - "subitem": "active" - }, - "path": [ - "color", - "datatable", - "sort-arrow", - "active" - ] - } - }, - "cell": { - "font": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorDatatableCellFont", - "attributes": { - "category": "color", - "type": "datatable", - "item": "cell", - "subitem": "font" - }, - "path": [ - "color", - "datatable", - "cell", - "font" - ] - }, - "background": { - "hover": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorDatatableCellBackgroundHover", - "attributes": { - "category": "color", - "type": "datatable", - "item": "cell", - "subitem": "background", - "state": "hover" - }, - "path": [ - "color", - "datatable", - "cell", - "background", - "hover" - ] - }, - "selected": { - "value": "#e5e7fa", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorDatatableCellBackgroundSelected", - "attributes": { - "category": "color", - "type": "datatable", - "item": "cell", - "subitem": "background", - "state": "selected" - }, - "path": [ - "color", - "datatable", - "cell", - "background", - "selected" - ] - } - } - }, - "subtable": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorDatatableSubtableBackground", - "attributes": { - "category": "color", - "type": "datatable", - "item": "subtable", - "subitem": "background" - }, - "path": [ - "color", - "datatable", - "subtable", - "background" - ] - }, - "border": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorDatatableSubtableBorder", - "attributes": { - "category": "color", - "type": "datatable", - "item": "subtable", - "subitem": "border" - }, - "path": [ - "color", - "datatable", - "subtable", - "border" - ] - }, - "font": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorDatatableSubtableFont", - "attributes": { - "category": "color", - "type": "datatable", - "item": "subtable", - "subitem": "font" - }, - "path": [ - "color", - "datatable", - "subtable", - "font" - ] - } - }, - "icon": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorDatatableIcon", - "attributes": { - "category": "color", - "type": "datatable", - "item": "icon" - }, - "path": [ - "color", - "datatable", - "icon" - ] - } - }, - "dialog": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorDialogBackground", - "attributes": { - "category": "color", - "type": "dialog", - "item": "background" - }, - "path": [ - "color", - "dialog", - "background" - ] - }, - "icon": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorDialogIcon", - "attributes": { - "category": "color", - "type": "dialog", - "item": "icon" - }, - "path": [ - "color", - "dialog", - "icon" - ] - }, - "close": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorDialogClose", - "attributes": { - "category": "color", - "type": "dialog", - "item": "close" - }, - "path": [ - "color", - "dialog", - "close" - ] - }, - "footer": { - "shadow": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/dialog.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorDialogFooterShadow", - "attributes": { - "category": "color", - "type": "dialog", - "item": "footer", - "subitem": "shadow" - }, - "path": [ - "color", - "dialog", - "footer", - "shadow" - ] - } - } - }, - "divider": { - "lightest": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorDividerLightest", - "attributes": { - "category": "color", - "type": "divider", - "item": "lightest" - }, - "path": [ - "color", - "divider", - "lightest" - ] - }, - "light": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorDividerLight", - "attributes": { - "category": "color", - "type": "divider", - "item": "light" - }, - "path": [ - "color", - "divider", - "light" - ] - }, - "default": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorDividerDefault", - "attributes": { - "category": "color", - "type": "divider", - "item": "default" - }, - "path": [ - "color", - "divider", - "default" - ] - }, - "dark": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/divider.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorDividerDark", - "attributes": { - "category": "color", - "type": "divider", - "item": "dark" - }, - "path": [ - "color", - "divider", - "dark" - ] - } - }, - "fields": { - "error": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.danger.value}" - }, - "name": "ColorFieldsError", - "attributes": { - "category": "color", - "type": "fields", - "item": "error" - }, - "path": [ - "color", - "fields", - "error" - ] - }, - "label": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.dark.value}" - }, - "name": "ColorFieldsLabel", - "attributes": { - "category": "color", - "type": "fields", - "item": "label" - }, - "path": [ - "color", - "fields", - "label" - ] - }, - "requirement": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.light.value}" - }, - "name": "ColorFieldsRequirement", - "attributes": { - "category": "color", - "type": "fields", - "item": "requirement" - }, - "path": [ - "color", - "fields", - "requirement" - ] - }, - "help": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fields.json", - "isSource": true, - "original": { - "value": "{color.font.light.value}" - }, - "name": "ColorFieldsHelp", - "attributes": { - "category": "color", - "type": "fields", - "item": "help" - }, - "path": [ - "color", - "fields", - "help" - ] - } - }, - "fileuploader": { - "font": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFileuploaderFont", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "font" - }, - "path": [ - "color", - "fileuploader", - "font" - ] - }, - "files": { - "list": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorFileuploaderFilesList", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "files", - "subitem": "list" - }, - "path": [ - "color", - "fileuploader", - "files", - "list" - ] - }, - "delete": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorFileuploaderFilesDelete", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "files", - "subitem": "delete" - }, - "path": [ - "color", - "fileuploader", - "files", - "delete" - ] - } - }, - "valid": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorFileuploaderValid", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "valid" - }, - "path": [ - "color", - "fileuploader", - "valid" - ] - }, - "alert": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/fileuploder.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorFileuploaderAlert", - "attributes": { - "category": "color", - "type": "fileuploader", - "item": "alert" - }, - "path": [ - "color", - "fileuploader", - "alert" - ] - } - }, - "flag": { - "solid": { - "background": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagSolidBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid", - "background" - ] - }, - "border": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagSolidBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid", - "text" - ] - } - }, - "solid-primary-02": { - "background": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorFlagSolidPrimary02Background", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-primary-02", - "background" - ] - }, - "border": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorFlagSolidPrimary02Border", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-primary-02", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-primary-02", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidPrimary02Text", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-primary-02", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-primary-02", - "text" - ] - } - }, - "solid-dark": { - "background": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagSolidDarkBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-dark", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-dark", - "background" - ] - }, - "border": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagSolidDarkBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-dark", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidDarkText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-dark", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-dark", - "text" - ] - } - }, - "solid-light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidLightBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-light", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-light", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidLightBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-light", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-light", - "border" - ] - }, - "text": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagSolidLightText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-light", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-light", - "text" - ] - } - }, - "solid-danger": { - "background": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagSolidDangerBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-danger", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "solid-danger", - "background" - ] - }, - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagSolidDangerBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-danger", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "solid-danger", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagSolidDangerText", - "attributes": { - "category": "color", - "type": "flag", - "item": "solid-danger", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "solid-danger", - "text" - ] - } - }, - "bordered": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered", - "background" - ] - }, - "border": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagBorderedBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered", - "border" - ] - }, - "text": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFlagBorderedText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered", - "text" - ] - } - }, - "bordered-primary-02": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedPrimary02Background", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-primary-02", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-primary-02", - "background" - ] - }, - "border": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorFlagBorderedPrimary02Border", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-primary-02", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-primary-02", - "border" - ] - }, - "text": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorFlagBorderedPrimary02Text", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-primary-02", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-primary-02", - "text" - ] - } - }, - "bordered-dark": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedDarkBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-dark", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-dark", - "background" - ] - }, - "border": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagBorderedDarkBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-dark", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-dark", - "border" - ] - }, - "text": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagBorderedDarkText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-dark", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-dark", - "text" - ] - } - }, - "bordered-light": { - "background": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFlagBorderedLightBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-light", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-light", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedLightBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-light", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-light", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedLightText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-light", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-light", - "text" - ] - } - }, - "bordered-danger": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFlagBorderedDangerBackground", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-danger", - "subitem": "background" - }, - "path": [ - "color", - "flag", - "bordered-danger", - "background" - ] - }, - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagBorderedDangerBorder", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-danger", - "subitem": "border" - }, - "path": [ - "color", - "flag", - "bordered-danger", - "border" - ] - }, - "text": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/flag.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorFlagBorderedDangerText", - "attributes": { - "category": "color", - "type": "flag", - "item": "bordered-danger", - "subitem": "text" - }, - "path": [ - "color", - "flag", - "bordered-danger", - "text" - ] - } - } - }, - "focus": { - "gap": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/focus.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFocusGap", - "attributes": { - "category": "color", - "type": "focus", - "item": "gap" - }, - "path": [ - "color", - "focus", - "gap" - ] - }, - "border": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/focus.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.500.value}" - }, - "name": "ColorFocusBorder", - "attributes": { - "category": "color", - "type": "focus", - "item": "border" - }, - "path": [ - "color", - "focus", - "border" - ] - } - }, - "font": { - "primary-01": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorFontPrimary01", - "attributes": { - "category": "color", - "type": "font", - "item": "primary-01" - }, - "path": [ - "color", - "font", - "primary-01" - ] - }, - "primary-02": { - "value": "#e54f00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.primary-02.500.value}" - }, - "name": "ColorFontPrimary02", - "attributes": { - "category": "color", - "type": "font", - "item": "primary-02" - }, - "path": [ - "color", - "font", - "primary-02" - ] - }, - "darkest": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorFontDarkest", - "attributes": { - "category": "color", - "type": "font", - "item": "darkest" - }, - "path": [ - "color", - "font", - "darkest" - ] - }, - "darker": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorFontDarker", - "attributes": { - "category": "color", - "type": "font", - "item": "darker" - }, - "path": [ - "color", - "font", - "darker" - ] - }, - "dark": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorFontDark", - "attributes": { - "category": "color", - "type": "font", - "item": "dark" - }, - "path": [ - "color", - "font", - "dark" - ] - }, - "light": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorFontLight", - "attributes": { - "category": "color", - "type": "font", - "item": "light" - }, - "path": [ - "color", - "font", - "light" - ] - }, - "lightest": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorFontLightest", - "attributes": { - "category": "color", - "type": "font", - "item": "lightest" - }, - "path": [ - "color", - "font", - "lightest" - ] - }, - "info": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.info.600.value}" - }, - "name": "ColorFontInfo", - "attributes": { - "category": "color", - "type": "font", - "item": "info" - }, - "path": [ - "color", - "font", - "info" - ] - }, - "success": { - "value": "#188803", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.success.600.value}" - }, - "name": "ColorFontSuccess", - "attributes": { - "category": "color", - "type": "font", - "item": "success" - }, - "path": [ - "color", - "font", - "success" - ] - }, - "warning": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.warning.600.value}" - }, - "name": "ColorFontWarning", - "attributes": { - "category": "color", - "type": "font", - "item": "warning" - }, - "path": [ - "color", - "font", - "warning" - ] - }, - "danger": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/font.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorFontDanger", - "attributes": { - "category": "color", - "type": "font", - "item": "danger" - }, - "path": [ - "color", - "font", - "danger" - ] - } - }, - "heading": { - "underline": { - "default": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/heading.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorHeadingUnderlineDefault", - "attributes": { - "category": "color", - "type": "heading", - "item": "underline", - "subitem": "default" - }, - "path": [ - "color", - "heading", - "underline", - "default" - ] - }, - "lightest": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/heading.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorHeadingUnderlineLightest", - "attributes": { - "category": "color", - "type": "heading", - "item": "underline", - "subitem": "lightest" - }, - "path": [ - "color", - "heading", - "underline", - "lightest" - ] - } - }, - "line": { - "default": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/heading.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorHeadingLineDefault", - "attributes": { - "category": "color", - "type": "heading", - "item": "line", - "subitem": "default" - }, - "path": [ - "color", - "heading", - "line", - "default" - ] - }, - "lightest": { - "value": "#ffab80", - "filePath": "packages/tokens/src/tokens/bricoman/color/heading.json", - "isSource": true, - "original": { - "value": "{color.primary-02.200.value}" - }, - "name": "ColorHeadingLineLightest", - "attributes": { - "category": "color", - "type": "heading", - "item": "line", - "subitem": "lightest" - }, - "path": [ - "color", - "heading", - "line", - "lightest" - ] - } - } - }, - "hero": { - "cover": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/hero.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorHeroCoverBackground", - "attributes": { - "category": "color", - "type": "hero", - "item": "cover", - "subitem": "background" - }, - "path": [ - "color", - "hero", - "cover", - "background" - ] - } - } - }, - "input": { - "text": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorInputText", - "attributes": { - "category": "color", - "type": "input", - "item": "text" - }, - "path": [ - "color", - "input", - "text" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorInputBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "border" - }, - "path": [ - "color", - "input", - "border" - ] - }, - "placeholder": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorInputPlaceholder", - "attributes": { - "category": "color", - "type": "input", - "item": "placeholder" - }, - "path": [ - "color", - "input", - "placeholder" - ] - }, - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorInputBackground", - "attributes": { - "category": "color", - "type": "input", - "item": "background" - }, - "path": [ - "color", - "input", - "background" - ] - }, - "disabled": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorInputDisabledBackground", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "input", - "disabled", - "background" - ] - }, - "border": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorInputDisabledBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "border" - }, - "path": [ - "color", - "input", - "disabled", - "border" - ] - }, - "icon": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorInputDisabledIcon", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "icon" - }, - "path": [ - "color", - "input", - "disabled", - "icon" - ] - }, - "label": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorInputDisabledLabel", - "attributes": { - "category": "color", - "type": "input", - "item": "disabled", - "subitem": "label" - }, - "path": [ - "color", - "input", - "disabled", - "label" - ] - } - }, - "hover": { - "border": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorInputHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "hover", - "subitem": "border" - }, - "path": [ - "color", - "input", - "hover", - "border" - ] - } - }, - "focus": { - "border": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.500.value}" - }, - "name": "ColorInputFocusBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "focus", - "subitem": "border" - }, - "path": [ - "color", - "input", - "focus", - "border" - ] - } - }, - "valid": { - "border": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.success.500.value}" - }, - "name": "ColorInputValidBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "valid", - "subitem": "border" - }, - "path": [ - "color", - "input", - "valid", - "border" - ] - }, - "hover": { - "border": { - "value": "#035010", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.success.800.value}" - }, - "name": "ColorInputValidHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "valid", - "subitem": "hover", - "state": "border" - }, - "path": [ - "color", - "input", - "valid", - "hover", - "border" - ] - } - } - }, - "invalid": { - "border": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorInputInvalidBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "invalid", - "subitem": "border" - }, - "path": [ - "color", - "input", - "invalid", - "border" - ] - }, - "hover": { - "border": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.danger.800.value}" - }, - "name": "ColorInputInvalidHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "invalid", - "subitem": "hover", - "state": "border" - }, - "path": [ - "color", - "input", - "invalid", - "hover", - "border" - ] - } - } - }, - "checked": { - "border": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorInputCheckedBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "border" - }, - "path": [ - "color", - "input", - "checked", - "border" - ] - }, - "background": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorInputCheckedBackground", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "background" - }, - "path": [ - "color", - "input", - "checked", - "background" - ] - }, - "icon": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/input.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorInputCheckedIcon", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "icon" - }, - "path": [ - "color", - "input", - "checked", - "icon" - ] - }, - "hover": { - "border": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/input.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorInputCheckedHoverBorder", - "attributes": { - "category": "color", - "type": "input", - "item": "checked", - "subitem": "hover", - "state": "border" - }, - "path": [ - "color", - "input", - "checked", - "hover", - "border" - ] - } - } - } - }, - "link": { - "dark": { - "base": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorLinkDarkBase", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "base" - }, - "path": [ - "color", - "link", - "dark", - "base" - ] - }, - "visited": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorLinkDarkVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "dark", - "visited" - ] - }, - "active": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorLinkDarkActive", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "active" - }, - "path": [ - "color", - "link", - "dark", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkDarkDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "dark", - "disabled" - ] - }, - "hover": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorLinkDarkHover", - "attributes": { - "category": "color", - "type": "link", - "item": "dark", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "dark", - "hover" - ] - } - }, - "light": { - "base": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorLinkLightBase", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "base" - }, - "path": [ - "color", - "link", - "light", - "base" - ] - }, - "visited": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorLinkLightVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "light", - "visited" - ] - }, - "active": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorLinkLightActive", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "active" - }, - "path": [ - "color", - "link", - "light", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkLightDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "light", - "disabled" - ] - }, - "hover": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorLinkLightHover", - "attributes": { - "category": "color", - "type": "link", - "item": "light", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "light", - "hover" - ] - } - }, - "primary": { - "base": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorLinkPrimaryBase", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "base" - }, - "path": [ - "color", - "link", - "primary", - "base" - ] - }, - "visited": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorLinkPrimaryVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "primary", - "visited" - ] - }, - "active": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorLinkPrimaryActive", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "active" - }, - "path": [ - "color", - "link", - "primary", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkPrimaryDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "primary", - "disabled" - ] - }, - "hover": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/bricoman/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorLinkPrimaryHover", - "attributes": { - "category": "color", - "type": "link", - "item": "primary", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "primary", - "hover" - ] - } - }, - "primary-02": { - "base": { - "value": "#b83f00", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.600.value}" - }, - "name": "ColorLinkPrimary02Base", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "base" - }, - "path": [ - "color", - "link", - "primary-02", - "base" - ] - }, - "visited": { - "value": "#943300", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.700.value}" - }, - "name": "ColorLinkPrimary02Visited", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "primary-02", - "visited" - ] - }, - "active": { - "value": "#943300", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.700.value}" - }, - "name": "ColorLinkPrimary02Active", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "active" - }, - "path": [ - "color", - "link", - "primary-02", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkPrimary02Disabled", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "primary-02", - "disabled" - ] - }, - "hover": { - "value": "#421700", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.primary-02.900.value}" - }, - "name": "ColorLinkPrimary02Hover", - "attributes": { - "category": "color", - "type": "link", - "item": "primary-02", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "primary-02", - "hover" - ] - } - }, - "danger": { - "base": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.600.value}" - }, - "name": "ColorLinkDangerBase", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "base" - }, - "path": [ - "color", - "link", - "danger", - "base" - ] - }, - "visited": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.700.value}" - }, - "name": "ColorLinkDangerVisited", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "visited" - }, - "path": [ - "color", - "link", - "danger", - "visited" - ] - }, - "active": { - "value": "#8c0003", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.700.value}" - }, - "name": "ColorLinkDangerActive", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "active" - }, - "path": [ - "color", - "link", - "danger", - "active" - ] - }, - "disabled": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorLinkDangerDisabled", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "disabled" - }, - "path": [ - "color", - "link", - "danger", - "disabled" - ] - }, - "hover": { - "value": "#530000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/link.json", - "isSource": true, - "original": { - "value": "{color.secondary-red.800.value}" - }, - "name": "ColorLinkDangerHover", - "attributes": { - "category": "color", - "type": "link", - "item": "danger", - "subitem": "hover" - }, - "path": [ - "color", - "link", - "danger", - "hover" - ] - } - } - }, - "listbox": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorListboxBackground", - "attributes": { - "category": "color", - "type": "listbox", - "item": "background" - }, - "path": [ - "color", - "listbox", - "background" - ] - }, - "border": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorListboxBorder", - "attributes": { - "category": "color", - "type": "listbox", - "item": "border" - }, - "path": [ - "color", - "listbox", - "border" - ] - }, - "tile": { - "border": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorListboxTileBorder", - "attributes": { - "category": "color", - "type": "listbox", - "item": "tile", - "subitem": "border" - }, - "path": [ - "color", - "listbox", - "tile", - "border" - ] - }, - "shadow": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorListboxTileShadow", - "attributes": { - "category": "color", - "type": "listbox", - "item": "tile", - "subitem": "shadow" - }, - "path": [ - "color", - "listbox", - "tile", - "shadow" - ] - }, - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorListboxTileHoverBackground", - "attributes": { - "category": "color", - "type": "listbox", - "item": "tile", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "listbox", - "tile", - "hover", - "background" - ] - } - } - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/listbox.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorListboxDisabledBackground", - "attributes": { - "category": "color", - "type": "listbox", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "listbox", - "disabled", - "background" - ] - } - } - }, - "notification": { - "font": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorNotificationFont", - "attributes": { - "category": "color", - "type": "notification", - "item": "font" - }, - "path": [ - "color", - "notification", - "font" - ] - }, - "information": { - "background": { - "value": "#daeff7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.info.100.value}" - }, - "name": "ColorNotificationInformationBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "information", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "information", - "background" - ] - }, - "border": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.info.500.value}" - }, - "name": "ColorNotificationInformationBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "information", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "information", - "border" - ] - }, - "icon": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.info.600.value}" - }, - "name": "ColorNotificationInformationIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "information", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "information", - "icon" - ] - } - }, - "success": { - "background": { - "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.success.100.value}" - }, - "name": "ColorNotificationSuccessBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "success", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "success", - "background" - ] - }, - "border": { - "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.success.500.value}" - }, - "name": "ColorNotificationSuccessBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "success", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "success", - "border" - ] - }, - "icon": { - "value": "#188803", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.success.600.value}" - }, - "name": "ColorNotificationSuccessIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "success", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "success", - "icon" - ] - } - }, - "warning": { - "background": { - "value": "#fdf1e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.warning.100.value}" - }, - "name": "ColorNotificationWarningBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "warning", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "warning", - "background" - ] - }, - "border": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.warning.500.value}" - }, - "name": "ColorNotificationWarningBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "warning", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "warning", - "border" - ] - }, - "icon": { - "value": "#c65200", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.warning.600.value}" - }, - "name": "ColorNotificationWarningIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "warning", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "warning", - "icon" - ] - } - }, - "danger": { - "background": { - "value": "#fdeaea", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.danger.100.value}" - }, - "name": "ColorNotificationDangerBackground", - "attributes": { - "category": "color", - "type": "notification", - "item": "danger", - "subitem": "background" - }, - "path": [ - "color", - "notification", - "danger", - "background" - ] - }, - "border": { - "value": "#ea302d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.danger.500.value}" - }, - "name": "ColorNotificationDangerBorder", - "attributes": { - "category": "color", - "type": "notification", - "item": "danger", - "subitem": "border" - }, - "path": [ - "color", - "notification", - "danger", - "border" - ] - }, - "icon": { - "value": "#c61112", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/notification.json", - "isSource": true, - "original": { - "value": "{color.danger.600.value}" - }, - "name": "ColorNotificationDangerIcon", - "attributes": { - "category": "color", - "type": "notification", - "item": "danger", - "subitem": "icon" - }, - "path": [ - "color", - "notification", - "danger", - "icon" - ] - } - } - }, - "option-button": { - "label": { - "shadow": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorOptionButtonLabelShadow", - "attributes": { - "category": "color", - "type": "option-button", - "item": "label", - "subitem": "shadow" - }, - "path": [ - "color", - "option-button", - "label", - "shadow" - ] - } - }, - "hover": { - "label": { - "shadow": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorOptionButtonHoverLabelShadow", - "attributes": { - "category": "color", - "type": "option-button", - "item": "hover", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-button", - "hover", - "label", - "shadow" - ] - } - } - }, - "checked": { - "label": { - "border": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorOptionButtonCheckedLabelBorder", - "attributes": { - "category": "color", - "type": "option-button", - "item": "checked", - "subitem": "label", - "state": "border" - }, - "path": [ - "color", - "option-button", - "checked", - "label", - "border" - ] - }, - "shadow": { - "value": "#e5e7fa", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorOptionButtonCheckedLabelShadow", - "attributes": { - "category": "color", - "type": "option-button", - "item": "checked", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-button", - "checked", - "label", - "shadow" - ] - } - } - }, - "disabled": { - "label": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-button.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorOptionButtonDisabledLabelBackground", - "attributes": { - "category": "color", - "type": "option-button", - "item": "disabled", - "subitem": "label", - "state": "background" - }, - "path": [ - "color", - "option-button", - "disabled", - "label", - "background" - ] - } - } - } - }, - "option-card": { - "label": { - "shadow": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorOptionCardLabelShadow", - "attributes": { - "category": "color", - "type": "option-card", - "item": "label", - "subitem": "shadow" - }, - "path": [ - "color", - "option-card", - "label", - "shadow" - ] - } - }, - "hover": { - "label": { - "shadow": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorOptionCardHoverLabelShadow", - "attributes": { - "category": "color", - "type": "option-card", - "item": "hover", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-card", - "hover", - "label", - "shadow" - ] - } - } - }, - "checked": { - "label": { - "border": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorOptionCardCheckedLabelBorder", - "attributes": { - "category": "color", - "type": "option-card", - "item": "checked", - "subitem": "label", - "state": "border" - }, - "path": [ - "color", - "option-card", - "checked", - "label", - "border" - ] - }, - "shadow": { - "value": "#e5e7fa", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.primary-01.100.value}" - }, - "name": "ColorOptionCardCheckedLabelShadow", - "attributes": { - "category": "color", - "type": "option-card", - "item": "checked", - "subitem": "label", - "state": "shadow" - }, - "path": [ - "color", - "option-card", - "checked", - "label", - "shadow" - ] - } - } - }, - "disabled": { - "content": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorOptionCardDisabledContent", - "attributes": { - "category": "color", - "type": "option-card", - "item": "disabled", - "subitem": "content" - }, - "path": [ - "color", - "option-card", - "disabled", - "content" - ] - }, - "label": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/option-card.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorOptionCardDisabledLabel", - "attributes": { - "category": "color", - "type": "option-card", - "item": "disabled", - "subitem": "label" - }, - "path": [ - "color", - "option-card", - "disabled", - "label" - ] - } - } - }, - "overlay": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/overlay.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorOverlayBackground", - "attributes": { - "category": "color", - "type": "overlay", - "item": "background" - }, - "path": [ - "color", - "overlay", - "background" - ] - }, - "loader": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/overlay.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorOverlayLoaderBackground", - "attributes": { - "category": "color", - "type": "overlay", - "item": "loader", - "subitem": "background" - }, - "path": [ - "color", - "overlay", - "loader", - "background" - ] - } - } - }, - "password-input": { - "button": { - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/password-input.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorPasswordInputButtonHoverBackground", - "attributes": { - "category": "color", - "type": "password-input", - "item": "button", - "subitem": "hover", - "state": "background" - }, - "path": [ - "color", - "password-input", - "button", - "hover", - "background" - ] - } - } - } - }, - "phone-number": { - "button": { - "border": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorPhoneNumberButtonBorder", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "button", - "subitem": "border" - }, - "path": [ - "color", - "phone-number", - "button", - "border" - ] - } - }, - "list": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorPhoneNumberListBackground", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "list", - "subitem": "background" - }, - "path": [ - "color", - "phone-number", - "list", - "background" - ] - } - }, - "item": { - "border": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorPhoneNumberItemBorder", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "item", - "subitem": "border" - }, - "path": [ - "color", - "phone-number", - "item", - "border" - ] - }, - "focus": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/phone-number.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorPhoneNumberItemFocusBackground", - "attributes": { - "category": "color", - "type": "phone-number", - "item": "item", - "subitem": "focus", - "state": "background" - }, - "path": [ - "color", - "phone-number", - "item", - "focus", - "background" - ] - } - } - } - }, - "progress": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorProgressBackground", - "attributes": { - "category": "color", - "type": "progress", - "item": "background" - }, - "path": [ - "color", - "progress", - "background" - ] - }, - "indicator": { - "value": "#007bb4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.info.600.value}" - }, - "name": "ColorProgressIndicator", - "attributes": { - "category": "color", - "type": "progress", - "item": "indicator" - }, - "path": [ - "color", - "progress", - "indicator" - ] - }, - "percentage": { - "default": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorProgressPercentageDefault", - "attributes": { - "category": "color", - "type": "progress", - "item": "percentage", - "subitem": "default" - }, - "path": [ - "color", - "progress", - "percentage", - "default" - ] - }, - "half": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorProgressPercentageHalf", - "attributes": { - "category": "color", - "type": "progress", - "item": "percentage", - "subitem": "half" - }, - "path": [ - "color", - "progress", - "percentage", - "half" - ] - } - }, - "branded": { - "indicator": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/progressbar.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorProgressBrandedIndicator", - "attributes": { - "category": "color", - "type": "progress", - "item": "branded", - "subitem": "indicator" - }, - "path": [ - "color", - "progress", - "branded", - "indicator" - ] - } - } - }, - "star": { - "empty": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorStarEmpty", - "attributes": { - "category": "color", - "type": "star", - "item": "empty" - }, - "path": [ - "color", - "star", - "empty" - ] - }, - "focus": { - "value": "#0b96cc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "{color.secondary-blue.500.value}" - }, - "name": "ColorStarFocus", - "attributes": { - "category": "color", - "type": "star", - "item": "focus" - }, - "path": [ - "color", - "star", - "focus" - ] - }, - "full": { - "value": "#ea7315", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "#EA7315" - }, - "name": "ColorStarFull", - "attributes": { - "category": "color", - "type": "star", - "item": "full" - }, - "path": [ - "color", - "star", - "full" - ] - }, - "hover": { - "value": "#f4b27e", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/star.json", - "isSource": true, - "original": { - "value": "{color.secondary-orange.300.value}" - }, - "name": "ColorStarHover", - "attributes": { - "category": "color", - "type": "star", - "item": "hover" - }, - "path": [ - "color", - "star", - "hover" - ] - } - }, - "stepper": { - "item": { - "background": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorStepperItemBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "item", - "subitem": "background" - }, - "path": [ - "color", - "stepper", - "item", - "background" - ] - }, - "current": { - "background": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperItemCurrentBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "item", - "subitem": "current", - "state": "background" - }, - "path": [ - "color", - "stepper", - "item", - "current", - "background" - ] - } - } - }, - "link": { - "hover": { - "text": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperLinkHoverText", - "attributes": { - "category": "color", - "type": "stepper", - "item": "link", - "subitem": "hover", - "state": "text" - }, - "path": [ - "color", - "stepper", - "link", - "hover", - "text" - ] - } - } - }, - "indicator": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorStepperIndicatorBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "background" - }, - "path": [ - "color", - "stepper", - "indicator", - "background" - ] - }, - "border": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorStepperIndicatorBorder", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "border" - }, - "path": [ - "color", - "stepper", - "indicator", - "border" - ] - }, - "current": { - "background": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperIndicatorCurrentBackground", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "current", - "state": "background" - }, - "path": [ - "color", - "stepper", - "indicator", - "current", - "background" - ] - }, - "border": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperIndicatorCurrentBorder", - "attributes": { - "category": "color", - "type": "stepper", - "item": "indicator", - "subitem": "current", - "state": "border" - }, - "path": [ - "color", - "stepper", - "indicator", - "current", - "border" - ] - } - } - }, - "icon": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperIcon", - "attributes": { - "category": "color", - "type": "stepper", - "item": "icon" - }, - "path": [ - "color", - "stepper", - "icon" - ] - }, - "title": { - "value": "#4d5bf5", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/stepper.json", - "isSource": true, - "original": { - "value": "{color.primary-01.500.value}" - }, - "name": "ColorStepperTitle", - "attributes": { - "category": "color", - "type": "stepper", - "item": "title" - }, - "path": [ - "color", - "stepper", - "title" - ] - } - }, - "tabs": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTabsBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "background" - }, - "path": [ - "color", - "tabs", - "background" - ] - }, - "shadow": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorTabsShadow", - "attributes": { - "category": "color", - "type": "tabs", - "item": "shadow" - }, - "path": [ - "color", - "tabs", - "shadow" - ] - }, - "default": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.font.light.value}" - }, - "name": "ColorTabsDefault", - "attributes": { - "category": "color", - "type": "tabs", - "item": "default" - }, - "path": [ - "color", - "tabs", - "default" - ] - }, - "element": { - "background": { - "value": "#ffe1d1", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-02.100.value}" - }, - "name": "ColorTabsElementBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "element", - "subitem": "background" - }, - "path": [ - "color", - "tabs", - "element", - "background" - ] - } - }, - "hover": { - "value": "#130f7b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTabsHover", - "attributes": { - "category": "color", - "type": "tabs", - "item": "hover" - }, - "path": [ - "color", - "tabs", - "hover" - ] - }, - "disabled": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTabsDisabledBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "tabs", - "disabled", - "background" - ] - } - }, - "active": { - "background": { - "value": "#ffab80", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-02.200.value}" - }, - "name": "ColorTabsActiveBackground", - "attributes": { - "category": "color", - "type": "tabs", - "item": "active", - "subitem": "background" - }, - "path": [ - "color", - "tabs", - "active", - "background" - ] - }, - "text": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.font.dark.value}" - }, - "name": "ColorTabsActiveText", - "attributes": { - "category": "color", - "type": "tabs", - "item": "active", - "subitem": "text" - }, - "path": [ - "color", - "tabs", - "active", - "text" - ] - } - }, - "selected": { - "border": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorTabsSelectedBorder", - "attributes": { - "category": "color", - "type": "tabs", - "item": "selected", - "subitem": "border" - }, - "path": [ - "color", - "tabs", - "selected", - "border" - ] - }, - "text": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.font.darkest.value}" - }, - "name": "ColorTabsSelectedText", - "attributes": { - "category": "color", - "type": "tabs", - "item": "selected", - "subitem": "text" - }, - "path": [ - "color", - "tabs", - "selected", - "text" - ] - } - }, - "active-disabled": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tabs.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorTabsActiveDisabled", - "attributes": { - "category": "color", - "type": "tabs", - "item": "active-disabled" - }, - "path": [ - "color", - "tabs", - "active-disabled" - ] - } - }, - "tag": { - "text": { - "light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagTextLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "text", - "light", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagTextLightBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "light", - "state": "border" - }, - "path": [ - "color", - "tag", - "text", - "light", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagTextLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "text", - "light", - "text" - ] - } - }, - "dark": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagTextDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "text", - "dark", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagTextDarkBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "dark", - "state": "border" - }, - "path": [ - "color", - "tag", - "text", - "dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagTextDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "text", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "text", - "dark", - "text" - ] - } - } - }, - "link": { - "light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagLinkLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "link", - "light", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagLinkLightBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "border" - }, - "path": [ - "color", - "tag", - "link", - "light", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagLinkLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "link", - "light", - "text" - ] - }, - "hover": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorTagLinkLightHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "hover" - }, - "path": [ - "color", - "tag", - "link", - "light", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTagLinkLightActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "link", - "light", - "active", - "background" - ] - } - } - }, - "dark": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagLinkDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagLinkDarkBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "border" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagLinkDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "text" - ] - }, - "hover": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorTagLinkDarkHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "hover" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTagLinkDarkActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "link", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "link", - "dark", - "active", - "background" - ] - } - } - } - }, - "selectable": { - "light": { - "background": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "background" - ] - }, - "border": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagSelectableLightBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "border" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "text" - ] - }, - "hover": { - "background": { - "value": "#8792ed", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.300.value}" - }, - "name": "ColorTagSelectableLightHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "hover" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#130f7b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTagSelectableLightActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "active", - "background" - ] - }, - "border": { - "value": "#130f7b", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.800.value}" - }, - "name": "ColorTagSelectableLightActiveBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "active", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableLightActiveText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "active", - "text" - ] - } - }, - "disabled": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorTagSelectableLightDisabledBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "disabled", - "background" - ] - }, - "text": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagSelectableLightDisabledText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "disabled", - "text" - ] - } - }, - "selected": { - "background": { - "value": "#373de7", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.600.value}" - }, - "name": "ColorTagSelectableLightSelectedBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "selected", - "background" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableLightSelectedText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "selected", - "text" - ] - }, - "hover": { - "background": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorTagSelectableLightSelectedHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "light", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "light", - "selected", - "hover", - "background" - ] - } - } - } - }, - "dark": { - "background": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableDarkBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "border" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "border" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagSelectableDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "text" - ] - }, - "hover": { - "background": { - "value": "#161cb6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.700.value}" - }, - "name": "ColorTagSelectableDarkHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "hover" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorTagSelectableDarkActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "active", - "background" - ] - }, - "border": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorTagSelectableDarkActiveBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "active", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableDarkActiveText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "active", - "text" - ] - } - }, - "selected": { - "background": { - "value": "#6875e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.400.value}" - }, - "name": "ColorTagSelectableDarkSelectedBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "background" - ] - }, - "border": { - "value": "#6875e8", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.400.value}" - }, - "name": "ColorTagSelectableDarkSelectedBorder", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "border" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagSelectableDarkSelectedText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "text" - ] - }, - "hover": { - "background": { - "value": "#8792ed", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.primary-01.300.value}" - }, - "name": "ColorTagSelectableDarkSelectedHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "selected" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "selected", - "hover", - "background" - ] - } - } - }, - "disabled": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTagSelectableDarkDisabledBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "disabled", - "background" - ] - }, - "text": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorTagSelectableDarkDisabledText", - "attributes": { - "category": "color", - "type": "tag", - "item": "selectable", - "subitem": "dark", - "state": "disabled" - }, - "path": [ - "color", - "tag", - "selectable", - "dark", - "disabled", - "text" - ] - } - } - } - }, - "removable": { - "light": { - "background": { - "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.800.value}" - }, - "name": "ColorTagRemovableLightBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "background" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "background" - ] - }, - "text": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTagRemovableLightText", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "text" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "text" - ] - }, - "icon": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTagRemovableLightIcon", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "icon" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "icon" - ] - }, - "hover": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTagRemovableLightHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "hover" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#666666", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.600.value}" - }, - "name": "ColorTagRemovableLightActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "light", - "state": "active" - }, - "path": [ - "color", - "tag", - "removable", - "light", - "active", - "background" - ] - } - } - }, - "dark": { - "background": { - "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.200.value}" - }, - "name": "ColorTagRemovableDarkBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "background" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "background" - ] - }, - "text": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagRemovableDarkText", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "text" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "text" - ] - }, - "icon": { - "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.900.value}" - }, - "name": "ColorTagRemovableDarkIcon", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "icon" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "icon" - ] - }, - "hover": { - "background": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorTagRemovableDarkHoverBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "hover" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "hover", - "background" - ] - } - }, - "active": { - "background": { - "value": "#999999", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tag.json", - "isSource": true, - "original": { - "value": "{color.grey.400.value}" - }, - "name": "ColorTagRemovableDarkActiveBackground", - "attributes": { - "category": "color", - "type": "tag", - "item": "removable", - "subitem": "dark", - "state": "active" - }, - "path": [ - "color", - "tag", - "removable", - "dark", - "active", - "background" - ] - } - } - } - } - }, - "toggle": { - "label": { - "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.999.value}" - }, - "name": "ColorToggleLabel", - "attributes": { - "category": "color", - "type": "toggle", - "item": "label" - }, - "path": [ - "color", - "toggle", - "label" - ] - }, - "off": { - "background": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/bricoman/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorToggleOffBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "off", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "off", - "background" - ] - }, - "circle": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorToggleOffCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "off", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "off", - "circle" - ] - } - }, - "on": { - "background": { - "value": "#ff5800", - "filePath": "packages/tokens/src/tokens/bricoman/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.primary-02.400.value}" - }, - "name": "ColorToggleOnBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "on", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "on", - "background" - ] - }, - "circle": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorToggleOnCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "on", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "on", - "circle" - ] - } - }, - "hover": { - "circle": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorToggleHoverCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "hover", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "hover", - "circle" - ] - } - }, - "disabled": { - "background": { - "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.100.value}" - }, - "name": "ColorToggleDisabledBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "disabled", - "background" - ] - }, - "circle": { - "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.300.value}" - }, - "name": "ColorToggleDisabledCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "disabled", - "circle" - ] - }, - "label": { - "value": "#808080", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.500.value}" - }, - "name": "ColorToggleDisabledLabel", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled", - "subitem": "label" - }, - "path": [ - "color", - "toggle", - "disabled", - "label" - ] - } - }, - "disabled-checked": { - "background": { - "value": "#b8bef4", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.primary-01.200.value}" - }, - "name": "ColorToggleDisabledCheckedBackground", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled-checked", - "subitem": "background" - }, - "path": [ - "color", - "toggle", - "disabled-checked", - "background" - ] - }, - "circle": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/toggle.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorToggleDisabledCheckedCircle", - "attributes": { - "category": "color", - "type": "toggle", - "item": "disabled-checked", - "subitem": "circle" - }, - "path": [ - "color", - "toggle", - "disabled-checked", - "circle" - ] - } - } - }, - "tooltip": { - "background": { - "value": "#4d4d4d", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tooltip.json", - "isSource": true, - "original": { - "value": "{color.grey.700.value}" - }, - "name": "ColorTooltipBackground", - "attributes": { - "category": "color", - "type": "tooltip", - "item": "background" - }, - "path": [ - "color", - "tooltip", - "background" - ] - }, - "border": { - "value": "#ffffff", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/tooltip.json", - "isSource": true, - "original": { - "value": "{color.grey.000.value}" - }, - "name": "ColorTooltipBorder", - "attributes": { - "category": "color", - "type": "tooltip", - "item": "border" - }, - "path": [ - "color", - "tooltip", - "border" - ] - } - } - }, - "font": { - "family": { - "value": "LeroyMerlin", - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": "LeroyMerlin" - }, - "name": "FontFamily", - "attributes": { - "category": "font", - "type": "family" - }, - "path": [ - "font", - "family" - ] - }, - "weight": { - "light": { - "value": 300, - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": 300 - }, - "name": "FontWeightLight", - "attributes": { - "category": "font", - "type": "weight", - "item": "light" - }, - "path": [ - "font", - "weight", - "light" - ] - }, - "regular": { - "value": 400, - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": 400 - }, - "name": "FontWeightRegular", - "attributes": { - "category": "font", - "type": "weight", - "item": "regular" - }, - "path": [ - "font", - "weight", - "regular" - ] - }, - "semi-bold": { - "value": 600, - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": 600 - }, - "name": "FontWeightSemiBold", - "attributes": { - "category": "font", - "type": "weight", - "item": "semi-bold" - }, - "path": [ - "font", - "weight", - "semi-bold" - ] - } - } - }, - "preset": { - "value": "bricoman", - "filePath": "packages/tokens/src/tokens/bricoman/preset.json", - "isSource": true, - "original": { - "value": "bricoman" - }, - "name": "Preset", - "attributes": { - "category": "preset" - }, - "path": [ - "preset" - ] - }, - "radius": { - "s": { - "value": 2, - "filePath": "packages/tokens/src/tokens/leroymerlin/radius/base.json", - "isSource": true, - "original": { - "value": 2 - }, - "name": "RadiusS", - "attributes": { - "category": "radius", - "type": "s" - }, - "path": [ - "radius", - "s" - ] - }, - "m": { - "value": 4, - "filePath": "packages/tokens/src/tokens/leroymerlin/radius/base.json", - "isSource": true, - "original": { - "value": 4 - }, - "name": "RadiusM", - "attributes": { - "category": "radius", - "type": "m" - }, - "path": [ - "radius", - "m" - ] - }, - "l": { - "value": 6, - "filePath": "packages/tokens/src/tokens/leroymerlin/radius/base.json", - "isSource": true, - "original": { - "value": 6 - }, - "name": "RadiusL", - "attributes": { - "category": "radius", - "type": "l" - }, - "path": [ - "radius", - "l" - ] - } - }, - "shadow": { - "s": { - "x": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowSX", - "attributes": { - "category": "shadow", - "type": "s", - "item": "x" - }, - "path": [ - "shadow", - "s", - "x" - ] - }, - "y": { - "value": "1px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "1px" - }, - "name": "ShadowSY", - "attributes": { - "category": "shadow", - "type": "s", - "item": "y" - }, - "path": [ - "shadow", - "s", - "y" - ] - }, - "blur": { - "value": "5px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "5px" - }, - "name": "ShadowSBlur", - "attributes": { - "category": "shadow", - "type": "s", - "item": "blur" - }, - "path": [ - "shadow", - "s", - "blur" - ] - }, - "spread": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowSSpread", - "attributes": { - "category": "shadow", - "type": "s", - "item": "spread" - }, - "path": [ - "shadow", - "s", - "spread" - ] - }, - "opacity": { - "value": "0.2", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0.2" - }, - "name": "ShadowSOpacity", - "attributes": { - "category": "shadow", - "type": "s", - "item": "opacity" - }, - "path": [ - "shadow", - "s", - "opacity" - ] - } - }, - "m": { - "x": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowMX", - "attributes": { - "category": "shadow", - "type": "m", - "item": "x" - }, - "path": [ - "shadow", - "m", - "x" - ] - }, - "y": { - "value": "2px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "2px" - }, - "name": "ShadowMY", - "attributes": { - "category": "shadow", - "type": "m", - "item": "y" - }, - "path": [ - "shadow", - "m", - "y" - ] - }, - "blur": { - "value": "10px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "10px" - }, - "name": "ShadowMBlur", - "attributes": { - "category": "shadow", - "type": "m", - "item": "blur" - }, - "path": [ - "shadow", - "m", - "blur" - ] - }, - "spread": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowMSpread", - "attributes": { - "category": "shadow", - "type": "m", - "item": "spread" - }, - "path": [ - "shadow", - "m", - "spread" - ] - }, - "opacity": { - "value": "0.2", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0.2" - }, - "name": "ShadowMOpacity", - "attributes": { - "category": "shadow", - "type": "m", - "item": "opacity" - }, - "path": [ - "shadow", - "m", - "opacity" - ] - } - }, - "l": { - "x": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowLX", - "attributes": { - "category": "shadow", - "type": "l", - "item": "x" - }, - "path": [ - "shadow", - "l", - "x" - ] - }, - "y": { - "value": "4px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "4px" - }, - "name": "ShadowLY", - "attributes": { - "category": "shadow", - "type": "l", - "item": "y" - }, - "path": [ - "shadow", - "l", - "y" - ] - }, - "blur": { - "value": "20px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "20px" - }, - "name": "ShadowLBlur", - "attributes": { - "category": "shadow", - "type": "l", - "item": "blur" - }, - "path": [ - "shadow", - "l", - "blur" - ] - }, - "spread": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ShadowLSpread", - "attributes": { - "category": "shadow", - "type": "l", - "item": "spread" - }, - "path": [ - "shadow", - "l", - "spread" - ] - }, - "opacity": { - "value": "0.2", - "filePath": "packages/tokens/src/tokens/leroymerlin/shadow/base.json", - "isSource": true, - "original": { - "value": "0.2" - }, - "name": "ShadowLOpacity", - "attributes": { - "category": "shadow", - "type": "l", - "item": "opacity" - }, - "path": [ - "shadow", - "l", - "opacity" - ] - } - } - }, - "magic-unit": { - "value": 1, - "filePath": "packages/tokens/src/tokens/leroymerlin/size/base.json", - "isSource": true, - "original": { - "value": 1 - }, - "name": "MagicUnit", - "attributes": { - "category": "magic-unit" - }, - "path": [ - "magic-unit" - ] - }, - "local-rem-value": { - "value": 16, - "filePath": "packages/tokens/src/tokens/leroymerlin/size/base.json", - "isSource": true, - "original": { - "value": 16 - }, - "name": "LocalRemValue", - "attributes": { - "category": "local-rem-value" - }, - "path": [ - "local-rem-value" - ] - }, - "size": { - "font": { - "10": { - "value": "2.5625rem", - "comment": "41px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.5625, - "comment": "41px" - }, - "name": "SizeFont10", - "attributes": { - "category": "size", - "type": "font", - "item": "10" - }, - "path": [ - "size", - "font", - "10" - ] - }, - "11": { - "value": "3.0625rem", - "comment": "49px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.0625, - "comment": "49px" - }, - "name": "SizeFont11", - "attributes": { - "category": "size", - "type": "font", - "item": "11" - }, - "path": [ - "size", - "font", - "11" - ] - }, - "12": { - "value": "3.6875rem", - "comment": "59px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.6875, - "comment": "59px" - }, - "name": "SizeFont12", - "attributes": { - "category": "size", - "type": "font", - "item": "12" - }, - "path": [ - "size", - "font", - "12" - ] - }, - "01": { - "value": "0.6815rem", - "comment": "11px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.6815, - "comment": "11px" - }, - "name": "SizeFont01", - "attributes": { - "category": "size", - "type": "font", - "item": "01" - }, - "path": [ - "size", - "font", - "01" - ] - }, - "02": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeFont02", - "attributes": { - "category": "size", - "type": "font", - "item": "02" - }, - "path": [ - "size", - "font", - "02" - ] - }, - "03": { - "value": "0.8125rem", - "comment": "13px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.8125, - "comment": "13px" - }, - "name": "SizeFont03", - "attributes": { - "category": "size", - "type": "font", - "item": "03" - }, - "path": [ - "size", - "font", - "03" - ] - }, - "04": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeFont04", - "attributes": { - "category": "size", - "type": "font", - "item": "04" - }, - "path": [ - "size", - "font", - "04" - ] - }, - "05": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeFont05", - "attributes": { - "category": "size", - "type": "font", - "item": "05" - }, - "path": [ - "size", - "font", - "05" - ] - }, - "06": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeFont06", - "attributes": { - "category": "size", - "type": "font", - "item": "06" - }, - "path": [ - "size", - "font", - "06" - ] - }, - "07": { - "value": "1.4375rem", - "comment": "23px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.4375, - "comment": "23px" - }, - "name": "SizeFont07", - "attributes": { - "category": "size", - "type": "font", - "item": "07" - }, - "path": [ - "size", - "font", - "07" - ] - }, - "08": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeFont08", - "attributes": { - "category": "size", - "type": "font", - "item": "08" - }, - "path": [ - "size", - "font", - "08" - ] - }, - "09": { - "value": "2.125rem", - "comment": "34px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.125, - "comment": "34px" - }, - "name": "SizeFont09", - "attributes": { - "category": "size", - "type": "font", - "item": "09" - }, - "path": [ - "size", - "font", - "09" - ] - } - }, - "line": { - "10": { - "xs": { - "value": "2.5rem", - "comment": "40px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.5, - "comment": "40px" - }, - "name": "SizeLine10Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "10", - "xs" - ] - }, - "s": { - "value": "3rem", - "comment": "48px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3, - "comment": "48px" - }, - "name": "SizeLine10S", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "s" - }, - "path": [ - "size", - "line", - "10", - "s" - ] - }, - "m": { - "value": "3.5rem", - "comment": "56px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.5, - "comment": "56px" - }, - "name": "SizeLine10M", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "m" - }, - "path": [ - "size", - "line", - "10", - "m" - ] - }, - "l": { - "value": "3.75rem", - "comment": "60px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.75, - "comment": "60px" - }, - "name": "SizeLine10L", - "attributes": { - "category": "size", - "type": "line", - "item": "10", - "subitem": "l" - }, - "path": [ - "size", - "line", - "10", - "l" - ] - } - }, - "11": { - "xs": { - "value": "3rem", - "comment": "48px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3, - "comment": "48px" - }, - "name": "SizeLine11Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "11", - "xs" - ] - }, - "s": { - "value": "3.5rem", - "comment": "56px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.5, - "comment": "56px" - }, - "name": "SizeLine11S", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "s" - }, - "path": [ - "size", - "line", - "11", - "s" - ] - }, - "m": { - "value": "4.25rem", - "comment": "68px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 4.25, - "comment": "68px" - }, - "name": "SizeLine11M", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "m" - }, - "path": [ - "size", - "line", - "11", - "m" - ] - }, - "l": { - "value": "4.5rem", - "comment": "72px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 4.5, - "comment": "72px" - }, - "name": "SizeLine11L", - "attributes": { - "category": "size", - "type": "line", - "item": "11", - "subitem": "l" - }, - "path": [ - "size", - "line", - "11", - "l" - ] - } - }, - "12": { - "xs": { - "value": "3.75rem", - "comment": "60px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.75, - "comment": "60px" - }, - "name": "SizeLine12Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "12", - "xs" - ] - }, - "s": { - "value": "4.25rem", - "comment": "68px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 4.25, - "comment": "68px" - }, - "name": "SizeLine12S", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "s" - }, - "path": [ - "size", - "line", - "12", - "s" - ] - }, - "m": { - "value": "5rem", - "comment": "80px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 5, - "comment": "80px" - }, - "name": "SizeLine12M", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "m" - }, - "path": [ - "size", - "line", - "12", - "m" - ] - }, - "l": { - "value": "5.5rem", - "comment": "88px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 5.5, - "comment": "88px" - }, - "name": "SizeLine12L", - "attributes": { - "category": "size", - "type": "line", - "item": "12", - "subitem": "l" - }, - "path": [ - "size", - "line", - "12", - "l" - ] - } - }, - "01": { - "xs": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeLine01Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "01", - "xs" - ] - }, - "s": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeLine01S", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "s" - }, - "path": [ - "size", - "line", - "01", - "s" - ] - }, - "m": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine01M", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "m" - }, - "path": [ - "size", - "line", - "01", - "m" - ] - }, - "l": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine01L", - "attributes": { - "category": "size", - "type": "line", - "item": "01", - "subitem": "l" - }, - "path": [ - "size", - "line", - "01", - "l" - ] - } - }, - "02": { - "xs": { - "value": "0.75rem", - "comment": "12px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.75, - "comment": "12px" - }, - "name": "SizeLine02Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "02", - "xs" - ] - }, - "s": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine02S", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "s" - }, - "path": [ - "size", - "line", - "02", - "s" - ] - }, - "m": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine02M", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "m" - }, - "path": [ - "size", - "line", - "02", - "m" - ] - }, - "l": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine02L", - "attributes": { - "category": "size", - "type": "line", - "item": "02", - "subitem": "l" - }, - "path": [ - "size", - "line", - "02", - "l" - ] - } - }, - "03": { - "xs": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine03Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "03", - "xs" - ] - }, - "s": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine03S", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "s" - }, - "path": [ - "size", - "line", - "03", - "s" - ] - }, - "m": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine03M", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "m" - }, - "path": [ - "size", - "line", - "03", - "m" - ] - }, - "l": { - "value": "1.25rem", - "comment": "20px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.25, - "comment": "20px" - }, - "name": "SizeLine03L", - "attributes": { - "category": "size", - "type": "line", - "item": "03", - "subitem": "l" - }, - "path": [ - "size", - "line", - "03", - "l" - ] - } - }, - "04": { - "xs": { - "value": "0.875rem", - "comment": "14px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 0.875, - "comment": "14px" - }, - "name": "SizeLine04Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "04", - "xs" - ] - }, - "s": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine04S", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "s" - }, - "path": [ - "size", - "line", - "04", - "s" - ] - }, - "m": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine04M", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "m" - }, - "path": [ - "size", - "line", - "04", - "m" - ] - }, - "l": { - "value": "1.375rem", - "comment": "22px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.375, - "comment": "22px" - }, - "name": "SizeLine04L", - "attributes": { - "category": "size", - "type": "line", - "item": "04", - "subitem": "l" - }, - "path": [ - "size", - "line", - "04", - "l" - ] - } - }, - "05": { - "xs": { - "value": "1rem", - "comment": "16px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1, - "comment": "16px" - }, - "name": "SizeLine05Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "05", - "xs" - ] - }, - "s": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine05S", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "s" - }, - "path": [ - "size", - "line", - "05", - "s" - ] - }, - "m": { - "value": "1.375rem", - "comment": "22px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.375, - "comment": "22px" - }, - "name": "SizeLine05M", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "m" - }, - "path": [ - "size", - "line", - "05", - "m" - ] - }, - "l": { - "value": "1.5rem", - "comment": "24px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.5, - "comment": "24px" - }, - "name": "SizeLine05L", - "attributes": { - "category": "size", - "type": "line", - "item": "05", - "subitem": "l" - }, - "path": [ - "size", - "line", - "05", - "l" - ] - } - }, - "06": { - "xs": { - "value": "1.125rem", - "comment": "18px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.125, - "comment": "18px" - }, - "name": "SizeLine06Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "06", - "xs" - ] - }, - "s": { - "value": "1.25rem", - "comment": "20px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.25, - "comment": "20px" - }, - "name": "SizeLine06S", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "s" - }, - "path": [ - "size", - "line", - "06", - "s" - ] - }, - "m": { - "value": "1.5rem", - "comment": "24px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.5, - "comment": "24px" - }, - "name": "SizeLine06M", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "m" - }, - "path": [ - "size", - "line", - "06", - "m" - ] - }, - "l": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeLine06L", - "attributes": { - "category": "size", - "type": "line", - "item": "06", - "subitem": "l" - }, - "path": [ - "size", - "line", - "06", - "l" - ] - } - }, - "07": { - "xs": { - "value": "1.5rem", - "comment": "24px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.5, - "comment": "24px" - }, - "name": "SizeLine07Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "07", - "xs" - ] - }, - "s": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeLine07S", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "s" - }, - "path": [ - "size", - "line", - "07", - "s" - ] - }, - "m": { - "value": "2rem", - "comment": "32px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2, - "comment": "32px" - }, - "name": "SizeLine07M", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "m" - }, - "path": [ - "size", - "line", - "07", - "m" - ] - }, - "l": { - "value": "2.25rem", - "comment": "36px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.25, - "comment": "36px" - }, - "name": "SizeLine07L", - "attributes": { - "category": "size", - "type": "line", - "item": "07", - "subitem": "l" - }, - "path": [ - "size", - "line", - "07", - "l" - ] - } - }, - "08": { - "xs": { - "value": "1.75rem", - "comment": "28px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 1.75, - "comment": "28px" - }, - "name": "SizeLine08Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "08", - "xs" - ] - }, - "s": { - "value": "2rem", - "comment": "32px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2, - "comment": "32px" - }, - "name": "SizeLine08S", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "s" - }, - "path": [ - "size", - "line", - "08", - "s" - ] - }, - "m": { - "value": "2.25rem", - "comment": "36px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.25, - "comment": "36px" - }, - "name": "SizeLine08M", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "m" - }, - "path": [ - "size", - "line", - "08", - "m" - ] - }, - "l": { - "value": "2.75rem", - "comment": "44px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.75, - "comment": "44px" - }, - "name": "SizeLine08L", - "attributes": { - "category": "size", - "type": "line", - "item": "08", - "subitem": "l" - }, - "path": [ - "size", - "line", - "08", - "l" - ] - } - }, - "09": { - "xs": { - "value": "2.25rem", - "comment": "36px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.25, - "comment": "36px" - }, - "name": "SizeLine09Xs", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "xs" - }, - "path": [ - "size", - "line", - "09", - "xs" - ] - }, - "s": { - "value": "2.5rem", - "comment": "40px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.5, - "comment": "40px" - }, - "name": "SizeLine09S", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "s" - }, - "path": [ - "size", - "line", - "09", - "s" - ] - }, - "m": { - "value": "2.75rem", - "comment": "44px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 2.75, - "comment": "44px" - }, - "name": "SizeLine09M", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "m" - }, - "path": [ - "size", - "line", - "09", - "m" - ] - }, - "l": { - "value": "3.25rem", - "comment": "52px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/font.json", - "isSource": true, - "original": { - "value": 3.25, - "comment": "52px" - }, - "name": "SizeLine09L", - "attributes": { - "category": "size", - "type": "line", - "item": "09", - "subitem": "l" - }, - "path": [ - "size", - "line", - "09", - "l" - ] - } - } - }, - "gutter": { - "screen": { - "s": { - "value": "1rem", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/grid.json", - "isSource": true, - "original": { - "value": 1 - }, - "name": "SizeGutterScreenS", - "attributes": { - "category": "size", - "type": "gutter", - "item": "screen", - "subitem": "s" - }, - "path": [ - "size", - "gutter", - "screen", - "s" - ] - }, - "m": { - "value": "2rem", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/grid.json", - "isSource": true, - "original": { - "value": 2 - }, - "name": "SizeGutterScreenM", - "attributes": { - "category": "size", - "type": "gutter", - "item": "screen", - "subitem": "m" - }, - "path": [ - "size", - "gutter", - "screen", - "m" - ] - } - } - } - }, - "screen": { - "s": { - "value": "0px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "0px" - }, - "name": "ScreenS", - "attributes": { - "category": "screen", - "type": "s" - }, - "path": [ - "screen", - "s" - ] - }, - "s-medium": { - "value": "320px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "320px" - }, - "name": "ScreenSMedium", - "attributes": { - "category": "screen", - "type": "s-medium" - }, - "path": [ - "screen", - "s-medium" - ] - }, - "s-large": { - "value": "360px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "360px" - }, - "name": "ScreenSLarge", - "attributes": { - "category": "screen", - "type": "s-large" - }, - "path": [ - "screen", - "s-large" - ] - }, - "s-xlarge": { - "value": "390px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "390px" - }, - "name": "ScreenSXlarge", - "attributes": { - "category": "screen", - "type": "s-xlarge" - }, - "path": [ - "screen", - "s-xlarge" - ] - }, - "m": { - "value": "680px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "680px" - }, - "name": "ScreenM", - "attributes": { - "category": "screen", - "type": "m" - }, - "path": [ - "screen", - "m" - ] - }, - "m-medium": { - "value": "769px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "769px" - }, - "name": "ScreenMMedium", - "attributes": { - "category": "screen", - "type": "m-medium" - }, - "path": [ - "screen", - "m-medium" - ] - }, - "l": { - "value": "1024px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1024px" - }, - "name": "ScreenL", - "attributes": { - "category": "screen", - "type": "l" - }, - "path": [ - "screen", - "l" - ] - }, - "l-medium": { - "value": "1100px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1100px" - }, - "name": "ScreenLMedium", - "attributes": { - "category": "screen", - "type": "l-medium" - }, - "path": [ - "screen", - "l-medium" - ] - }, - "xl": { - "value": "1280px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1280px" - }, - "name": "ScreenXl", - "attributes": { - "category": "screen", - "type": "xl" - }, - "path": [ - "screen", - "xl" - ] - }, - "xl-medium": { - "value": "1440px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1440px" - }, - "name": "ScreenXlMedium", - "attributes": { - "category": "screen", - "type": "xl-medium" - }, - "path": [ - "screen", - "xl-medium" - ] - }, - "xl-large": { - "value": "1680px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1680px" - }, - "name": "ScreenXlLarge", - "attributes": { - "category": "screen", - "type": "xl-large" - }, - "path": [ - "screen", - "xl-large" - ] - }, - "xxl": { - "value": "1920px", - "filePath": "packages/tokens/src/tokens/leroymerlin/size/screens.json", - "isSource": true, - "original": { - "value": "1920px" - }, - "name": "ScreenXxl", - "attributes": { - "category": "screen", - "type": "xxl" - }, - "path": [ - "screen", - "xxl" - ] - } - } -}; \ No newline at end of file diff --git a/packages/tokens/build/bricoman/scss/_tokens.scss b/packages/tokens/build/bricoman/scss/_tokens.scss deleted file mode 100644 index 6a6992fbe..000000000 --- a/packages/tokens/build/bricoman/scss/_tokens.scss +++ /dev/null @@ -1,1572 +0,0 @@ - -$border-s: 1 !default; -$border-m: 2 !default; -$border-l: 3 !default; -$color-badge-info-background: #daeff7 !default; -$color-badge-info-border: #0b96cc !default; -$color-badge-info-text: #005c91 !default; -$color-badge-success-background: #ebf5de !default; -$color-badge-success-border: #46a610 !default; -$color-badge-success-text: #006902 !default; -$color-badge-warning-background: #fdf1e8 !default; -$color-badge-warning-border: #ea7315 !default; -$color-badge-warning-text: #8c3500 !default; -$color-badge-danger-background: #fdeaea !default; -$color-badge-danger-border: #ea302d !default; -$color-badge-danger-text: #8c0003 !default; -$color-badge-neutral-background: #e6e6e6 !default; -$color-badge-neutral-border: #808080 !default; -$color-badge-neutral-text: #4d4d4d !default; -$color-primary-01-100: #e5e7fa !default; -$color-primary-01-200: #b8bef4 !default; -$color-primary-01-300: #8792ed !default; -$color-primary-01-400: #6875e8 !default; -$color-primary-01-500: #4d5bf5 !default; -$color-primary-01-600: #373de7 !default; -$color-primary-01-700: #161cb6 !default; -$color-primary-01-800: #130f7b !default; -$color-primary-01-900: #120949 !default; -$color-primary-02-100: #ffe1d1 !default; -$color-primary-02-200: #ffab80 !default; -$color-primary-02-300: #ff7933 !default; -$color-primary-02-400: #ff5800 !default; -$color-primary-02-500: #e54f00 !default; -$color-primary-02-600: #b83f00 !default; -$color-primary-02-700: #943300 !default; -$color-primary-02-800: #702700 !default; -$color-primary-02-900: #421700 !default; -$color-grey-100: #e6e6e6 !default; -$color-grey-200: #cccccc !default; -$color-grey-300: #b3b3b3 !default; -$color-grey-400: #999999 !default; -$color-grey-500: #808080 !default; -$color-grey-600: #666666 !default; -$color-grey-700: #4d4d4d !default; -$color-grey-800: #333333 !default; -$color-grey-900: #191919 !default; -$color-grey-999: #000000 !default; -$color-grey-000: #ffffff !default; -$color-secondary-blue-100: #daeff7 !default; -$color-secondary-blue-200: #a7d9ed !default; -$color-secondary-blue-300: #73c3e2 !default; -$color-secondary-blue-400: #3facd7 !default; -$color-secondary-blue-500: #0b96cc !default; -$color-secondary-blue-600: #007bb4 !default; -$color-secondary-blue-700: #005c91 !default; -$color-secondary-blue-800: #003a5c !default; -$color-secondary-blue-900: #002a41 !default; -$color-secondary-green-100: #e5e7fa !default; -$color-secondary-green-200: #b8bef4 !default; -$color-secondary-green-300: #8792ed !default; -$color-secondary-green-400: #6875e8 !default; -$color-secondary-green-500: #4d5bf5 !default; -$color-secondary-green-600: #373de7 !default; -$color-secondary-green-700: #161cb6 !default; -$color-secondary-green-800: #130f7b !default; -$color-secondary-green-900: #120949 !default; -$color-secondary-purple-100: #efebfe !default; -$color-secondary-purple-200: #c7b0fa !default; -$color-secondary-purple-300: #a575f3 !default; -$color-secondary-purple-400: #883be9 !default; -$color-secondary-purple-500: #7000dd !default; -$color-secondary-purple-600: #5803b3 !default; -$color-secondary-purple-700: #42058a !default; -$color-secondary-purple-800: #2e0663 !default; -$color-secondary-purple-900: #1c053d !default; -$color-secondary-red-100: #fdeaea !default; -$color-secondary-red-200: #f8bcbb !default; -$color-secondary-red-300: #f38d8c !default; -$color-secondary-red-400: #ef5f5c !default; -$color-secondary-red-500: #ea302d !default; -$color-secondary-red-600: #c61112 !default; -$color-secondary-red-700: #8c0003 !default; -$color-secondary-red-800: #530000 !default; -$color-secondary-red-900: #2d0000 !default; -$color-secondary-orange-100: #fdf1e8 !default; -$color-secondary-orange-200: #f8d2b3 !default; -$color-secondary-orange-300: #f4b27e !default; -$color-secondary-orange-400: #ef934a !default; -$color-secondary-orange-500: #ea7315 !default; -$color-secondary-orange-600: #c65200 !default; -$color-secondary-orange-700: #8c3500 !default; -$color-secondary-orange-800: #531b00 !default; -$color-secondary-orange-900: #360e00 !default; -$color-secondary-yellow-100: #fff8e2 !default; -$color-secondary-yellow-200: #ffebaf !default; -$color-secondary-yellow-300: #fee07d !default; -$color-secondary-yellow-400: #fcd64c !default; -$color-secondary-yellow-500: #f8cc1c !default; -$color-secondary-yellow-600: #c9a21b !default; -$color-secondary-yellow-700: #9c7b18 !default; -$color-secondary-yellow-800: #705613 !default; -$color-secondary-yellow-900: #46350d !default; -$color-danger-100: #fdeaea !default; -$color-danger-200: #f8bcbb !default; -$color-danger-300: #f38d8c !default; -$color-danger-400: #ef5f5c !default; -$color-danger-500: #ea302d !default; -$color-danger-600: #c61112 !default; -$color-danger-700: #8c0003 !default; -$color-danger-800: #530000 !default; -$color-danger-900: #2d0000 !default; -$color-info-100: #daeff7 !default; -$color-info-200: #a7d9ed !default; -$color-info-300: #73c3e2 !default; -$color-info-400: #3facd7 !default; -$color-info-500: #0b96cc !default; -$color-info-600: #007bb4 !default; -$color-info-700: #005c91 !default; -$color-info-800: #003a5c !default; -$color-info-900: #002a41 !default; -$color-warning-100: #fdf1e8 !default; -$color-warning-200: #f8d2b3 !default; -$color-warning-300: #f4b27e !default; -$color-warning-400: #ef934a !default; -$color-warning-500: #ea7315 !default; -$color-warning-600: #c65200 !default; -$color-warning-700: #8c3500 !default; -$color-warning-800: #531b00 !default; -$color-warning-900: #360e00 !default; -$color-success-100: #ebf5de !default; -$color-success-200: #c5e39e !default; -$color-success-300: #9ed05f !default; -$color-success-400: #78be20 !default; -$color-success-500: #46a610 !default; -$color-success-600: #188803 !default; -$color-success-700: #006902 !default; -$color-success-800: #035010 !default; -$color-success-900: #023618 !default; -$color-breadcrumb-arrow: #333333 !default; -$color-breadcrumb-arrow-invert: #ffffff !default; -$color-button-solid-background: #120949 !default; -$color-button-solid-font: #ffffff !default; -$color-button-solid-focus-border: #161cb6 !default; -$color-button-solid-disabled-background: #cccccc !default; -$color-button-solid-disabled-font: #666666 !default; -$color-button-solid-active-background: #161cb6 !default; -$color-button-solid-hover-background: #161cb6 !default; -$color-button-solid-hover-font: #ffffff !default; -$color-button-solid-primary-02-background: #ff5800 !default; -$color-button-solid-primary-02-font: #ffffff !default; -$color-button-solid-primary-02-focus-border: #421700 !default; -$color-button-solid-primary-02-disabled-background: #cccccc !default; -$color-button-solid-primary-02-disabled-font: #666666 !default; -$color-button-solid-primary-02-active-background: #421700 !default; -$color-button-solid-primary-02-hover-background: #b83f00 !default; -$color-button-solid-primary-02-hover-font: #ffffff !default; -$color-button-solid-neutral-background: #333333 !default; -$color-button-solid-neutral-font: #ffffff !default; -$color-button-solid-neutral-focus-border: #191919 !default; -$color-button-solid-neutral-disabled-background: #cccccc !default; -$color-button-solid-neutral-disabled-font: #666666 !default; -$color-button-solid-neutral-active-background: #333333 !default; -$color-button-solid-neutral-hover-background: #191919 !default; -$color-button-solid-neutral-hover-font: #ffffff !default; -$color-button-solid-danger-background: #c61112 !default; -$color-button-solid-danger-font: #ffffff !default; -$color-button-solid-danger-focus-border: #8c0003 !default; -$color-button-solid-danger-disabled-background: #cccccc !default; -$color-button-solid-danger-disabled-font: #666666 !default; -$color-button-solid-danger-active-background: #8c0003 !default; -$color-button-solid-danger-hover-background: #8c0003 !default; -$color-button-solid-danger-hover-font: #ffffff !default; -$color-button-bordered-background: #ffffff !default; -$color-button-bordered-border: #120949 !default; -$color-button-bordered-font: #120949 !default; -$color-button-bordered-focus-border: #161cb6 !default; -$color-button-bordered-disabled-background: #cccccc !default; -$color-button-bordered-disabled-font: #666666 !default; -$color-button-bordered-active-background: #b8bef4 !default; -$color-button-bordered-active-font: #130f7b !default; -$color-button-bordered-hover-background: #e5e7fa !default; -$color-button-bordered-hover-font: #161cb6 !default; -$color-button-bordered-primary-02-background: #ffffff !default; -$color-button-bordered-primary-02-border: #ff5800 !default; -$color-button-bordered-primary-02-font: #ff5800 !default; -$color-button-bordered-primary-02-focus-border: #421700 !default; -$color-button-bordered-primary-02-disabled-background: #cccccc !default; -$color-button-bordered-primary-02-disabled-font: #666666 !default; -$color-button-bordered-primary-02-active-background: #ffab80 !default; -$color-button-bordered-primary-02-hover-background: #ffe1d1 !default; -$color-button-bordered-neutral-background: #ffffff !default; -$color-button-bordered-neutral-border: #333333 !default; -$color-button-bordered-neutral-font: #333333 !default; -$color-button-bordered-neutral-focus-border: #191919 !default; -$color-button-bordered-neutral-disabled-background: #cccccc !default; -$color-button-bordered-neutral-disabled-font: #666666 !default; -$color-button-bordered-neutral-active-background: #cccccc !default; -$color-button-bordered-neutral-hover-background: #e6e6e6 !default; -$color-button-bordered-danger-background: #ffffff !default; -$color-button-bordered-danger-border: #c61112 !default; -$color-button-bordered-danger-font: #c61112 !default; -$color-button-bordered-danger-focus-border: #8c0003 !default; -$color-button-bordered-danger-disabled-background: #cccccc !default; -$color-button-bordered-danger-disabled-font: #666666 !default; -$color-button-bordered-danger-active-background: #f8bcbb !default; -$color-button-bordered-danger-active-font: #530000 !default; -$color-button-bordered-danger-hover-background: #fdeaea !default; -$color-button-bordered-danger-hover-font: #8c0003 !default; -$color-card-bordered-background: #ffffff !default; -$color-card-bordered-border: #808080 !default; -$color-datatable-filters-border: #b3b3b3 !default; -$color-datatable-container-background: #e6e6e6 !default; -$color-datatable-thead-font: #191919 !default; -$color-datatable-sort-arrow-default: #cccccc !default; -$color-datatable-sort-arrow-active: #333333 !default; -$color-datatable-cell-font: #191919 !default; -$color-datatable-cell-background-hover: #e6e6e6 !default; -$color-datatable-cell-background-selected: #e5e7fa !default; -$color-datatable-subtable-background: #e6e6e6 !default; -$color-datatable-subtable-border: #b3b3b3 !default; -$color-datatable-subtable-font: #000000 !default; -$color-datatable-icon: #4d5bf5 !default; -$color-dialog-background: #ffffff !default; -$color-dialog-icon: #666666 !default; -$color-dialog-close: #808080 !default; -$color-dialog-footer-shadow: #191919 !default; -$color-divider-lightest: #ffffff !default; -$color-divider-light: #b3b3b3 !default; -$color-divider-default: #666666 !default; -$color-divider-dark: #000000 !default; -$color-fields-error: #c61112 !default; -$color-fields-label: #333333 !default; -$color-fields-requirement: #666666 !default; -$color-fields-help: #666666 !default; -$color-fileuploader-font: #000000 !default; -$color-fileuploader-files-list: #e6e6e6 !default; -$color-fileuploader-files-delete: #cccccc !default; -$color-fileuploader-valid: #4d5bf5 !default; -$color-fileuploader-alert: #c61112 !default; -$color-flag-solid-background: #373de7 !default; -$color-flag-solid-border: #373de7 !default; -$color-flag-solid-text: #ffffff !default; -$color-flag-solid-primary-02-background: #b83f00 !default; -$color-flag-solid-primary-02-border: #b83f00 !default; -$color-flag-solid-primary-02-text: #ffffff !default; -$color-flag-solid-dark-background: #000000 !default; -$color-flag-solid-dark-border: #000000 !default; -$color-flag-solid-dark-text: #ffffff !default; -$color-flag-solid-light-background: #ffffff !default; -$color-flag-solid-light-border: #ffffff !default; -$color-flag-solid-light-text: #000000 !default; -$color-flag-solid-danger-background: #c61112 !default; -$color-flag-solid-danger-border: #c61112 !default; -$color-flag-solid-danger-text: #ffffff !default; -$color-flag-bordered-background: #ffffff !default; -$color-flag-bordered-border: #373de7 !default; -$color-flag-bordered-text: #373de7 !default; -$color-flag-bordered-primary-02-background: #ffffff !default; -$color-flag-bordered-primary-02-border: #b83f00 !default; -$color-flag-bordered-primary-02-text: #b83f00 !default; -$color-flag-bordered-dark-background: #ffffff !default; -$color-flag-bordered-dark-border: #000000 !default; -$color-flag-bordered-dark-text: #000000 !default; -$color-flag-bordered-light-background: #000000 !default; -$color-flag-bordered-light-border: #ffffff !default; -$color-flag-bordered-light-text: #ffffff !default; -$color-flag-bordered-danger-background: #ffffff !default; -$color-flag-bordered-danger-border: #c61112 !default; -$color-flag-bordered-danger-text: #c61112 !default; -$color-focus-gap: #ffffff !default; -$color-focus-border: #0b96cc !default; -$color-font-primary-01: #373de7 !default; -$color-font-primary-02: #e54f00 !default; -$color-font-darkest: #000000 !default; -$color-font-darker: #191919 !default; -$color-font-dark: #333333 !default; -$color-font-light: #666666 !default; -$color-font-lightest: #ffffff !default; -$color-font-info: #007bb4 !default; -$color-font-success: #188803 !default; -$color-font-warning: #c65200 !default; -$color-font-danger: #c61112 !default; -$color-heading-underline-default: #4d5bf5 !default; -$color-heading-underline-lightest: #b8bef4 !default; -$color-heading-line-default: #ff5800 !default; -$color-heading-line-lightest: #ffab80 !default; -$color-hero-cover-background: #191919 !default; -$color-input-text: #333333 !default; -$color-input-border: #808080 !default; -$color-input-placeholder: #808080 !default; -$color-input-background: #ffffff !default; -$color-input-disabled-background: #e6e6e6 !default; -$color-input-disabled-border: #e6e6e6 !default; -$color-input-disabled-icon: #999999 !default; -$color-input-disabled-label: #808080 !default; -$color-input-hover-border: #191919 !default; -$color-input-focus-border: #0b96cc !default; -$color-input-valid-border: #46a610 !default; -$color-input-valid-hover-border: #035010 !default; -$color-input-invalid-border: #c61112 !default; -$color-input-invalid-hover-border: #530000 !default; -$color-input-checked-border: #ff5800 !default; -$color-input-checked-background: #ff5800 !default; -$color-input-checked-icon: #ffffff !default; -$color-input-checked-hover-border: #ff5800 !default; -$color-link-dark-base: #000000 !default; -$color-link-dark-visited: #333333 !default; -$color-link-dark-active: #333333 !default; -$color-link-dark-disabled: #e6e6e6 !default; -$color-link-dark-hover: #666666 !default; -$color-link-light-base: #ffffff !default; -$color-link-light-visited: #cccccc !default; -$color-link-light-active: #cccccc !default; -$color-link-light-disabled: #e6e6e6 !default; -$color-link-light-hover: #999999 !default; -$color-link-primary-base: #ff5800 !default; -$color-link-primary-visited: #ff5800 !default; -$color-link-primary-active: #ff5800 !default; -$color-link-primary-disabled: #e6e6e6 !default; -$color-link-primary-hover: #b83f00 !default; -$color-link-primary-02-base: #b83f00 !default; -$color-link-primary-02-visited: #943300 !default; -$color-link-primary-02-active: #943300 !default; -$color-link-primary-02-disabled: #e6e6e6 !default; -$color-link-primary-02-hover: #421700 !default; -$color-link-danger-base: #c61112 !default; -$color-link-danger-visited: #8c0003 !default; -$color-link-danger-active: #8c0003 !default; -$color-link-danger-disabled: #e6e6e6 !default; -$color-link-danger-hover: #530000 !default; -$color-listbox-background: #ffffff !default; -$color-listbox-border: #666666 !default; -$color-listbox-tile-border: #b3b3b3 !default; -$color-listbox-tile-shadow: #191919 !default; -$color-listbox-tile-hover-background: #e6e6e6 !default; -$color-listbox-disabled-background: #cccccc !default; -$color-notification-font: #000000 !default; -$color-notification-information-background: #daeff7 !default; -$color-notification-information-border: #0b96cc !default; -$color-notification-information-icon: #007bb4 !default; -$color-notification-success-background: #ebf5de !default; -$color-notification-success-border: #46a610 !default; -$color-notification-success-icon: #188803 !default; -$color-notification-warning-background: #fdf1e8 !default; -$color-notification-warning-border: #ea7315 !default; -$color-notification-warning-icon: #c65200 !default; -$color-notification-danger-background: #fdeaea !default; -$color-notification-danger-border: #ea302d !default; -$color-notification-danger-icon: #c61112 !default; -$color-option-button-label-shadow: #b3b3b3 !default; -$color-option-button-hover-label-shadow: #333333 !default; -$color-option-button-checked-label-border: #4d5bf5 !default; -$color-option-button-checked-label-shadow: #e5e7fa !default; -$color-option-button-disabled-label-background: #cccccc !default; -$color-option-card-label-shadow: #b3b3b3 !default; -$color-option-card-hover-label-shadow: #333333 !default; -$color-option-card-checked-label-border: #4d5bf5 !default; -$color-option-card-checked-label-shadow: #e5e7fa !default; -$color-option-card-disabled-content: #cccccc !default; -$color-option-card-disabled-label: #666666 !default; -$color-overlay-background: #191919 !default; -$color-overlay-loader-background: #191919 !default; -$color-password-input-button-hover-background: #e6e6e6 !default; -$color-phone-number-button-border: #666666 !default; -$color-phone-number-list-background: #ffffff !default; -$color-phone-number-item-border: #b3b3b3 !default; -$color-phone-number-item-focus-background: #e6e6e6 !default; -$color-progress-background: #cccccc !default; -$color-progress-indicator: #007bb4 !default; -$color-progress-percentage-default: #191919 !default; -$color-progress-percentage-half: #ffffff !default; -$color-progress-branded-indicator: #4d5bf5 !default; -$color-star-empty: #ffffff !default; -$color-star-focus: #0b96cc !default; -$color-star-full: #ea7315 !default; -$color-star-hover: #f4b27e !default; -$color-stepper-item-background: #999999 !default; -$color-stepper-item-current-background: #4d5bf5 !default; -$color-stepper-link-hover-text: #4d5bf5 !default; -$color-stepper-indicator-background: #ffffff !default; -$color-stepper-indicator-border: #999999 !default; -$color-stepper-indicator-current-background: #4d5bf5 !default; -$color-stepper-indicator-current-border: #4d5bf5 !default; -$color-stepper-icon: #4d5bf5 !default; -$color-stepper-title: #4d5bf5 !default; -$color-tabs-background: #ffffff !default; -$color-tabs-shadow: #000000 !default; -$color-tabs-default: #666666 !default; -$color-tabs-element-background: #ffe1d1 !default; -$color-tabs-hover: #130f7b !default; -$color-tabs-disabled-background: #cccccc !default; -$color-tabs-active-background: #ffab80 !default; -$color-tabs-active-text: #333333 !default; -$color-tabs-selected-border: #000000 !default; -$color-tabs-selected-text: #000000 !default; -$color-tabs-active-disabled: #b8bef4 !default; -$color-tag-text-light-background: #ffffff !default; -$color-tag-text-light-border: #808080 !default; -$color-tag-text-light-text: #191919 !default; -$color-tag-text-dark-background: #191919 !default; -$color-tag-text-dark-border: #ffffff !default; -$color-tag-text-dark-text: #ffffff !default; -$color-tag-link-light-background: #ffffff !default; -$color-tag-link-light-border: #808080 !default; -$color-tag-link-light-text: #191919 !default; -$color-tag-link-light-hover-background: #e6e6e6 !default; -$color-tag-link-light-active-background: #cccccc !default; -$color-tag-link-dark-background: #191919 !default; -$color-tag-link-dark-border: #ffffff !default; -$color-tag-link-dark-text: #ffffff !default; -$color-tag-link-dark-hover-background: #333333 !default; -$color-tag-link-dark-active-background: #4d4d4d !default; -$color-tag-selectable-light-background: #ffffff !default; -$color-tag-selectable-light-border: #808080 !default; -$color-tag-selectable-light-text: #191919 !default; -$color-tag-selectable-light-hover-background: #8792ed !default; -$color-tag-selectable-light-active-background: #130f7b !default; -$color-tag-selectable-light-active-border: #130f7b !default; -$color-tag-selectable-light-active-text: #ffffff !default; -$color-tag-selectable-light-disabled-background: #e6e6e6 !default; -$color-tag-selectable-light-disabled-text: #808080 !default; -$color-tag-selectable-light-selected-background: #373de7 !default; -$color-tag-selectable-light-selected-text: #ffffff !default; -$color-tag-selectable-light-selected-hover-background: #161cb6 !default; -$color-tag-selectable-dark-background: #191919 !default; -$color-tag-selectable-dark-border: #ffffff !default; -$color-tag-selectable-dark-text: #ffffff !default; -$color-tag-selectable-dark-hover-background: #161cb6 !default; -$color-tag-selectable-dark-active-background: #b8bef4 !default; -$color-tag-selectable-dark-active-border: #b8bef4 !default; -$color-tag-selectable-dark-active-text: #191919 !default; -$color-tag-selectable-dark-selected-background: #6875e8 !default; -$color-tag-selectable-dark-selected-border: #6875e8 !default; -$color-tag-selectable-dark-selected-text: #191919 !default; -$color-tag-selectable-dark-selected-hover-background: #8792ed !default; -$color-tag-selectable-dark-disabled-background: #4d4d4d !default; -$color-tag-selectable-dark-disabled-text: #808080 !default; -$color-tag-removable-light-background: #333333 !default; -$color-tag-removable-light-text: #ffffff !default; -$color-tag-removable-light-icon: #cccccc !default; -$color-tag-removable-light-hover-background: #4d4d4d !default; -$color-tag-removable-light-active-background: #666666 !default; -$color-tag-removable-dark-background: #cccccc !default; -$color-tag-removable-dark-text: #191919 !default; -$color-tag-removable-dark-icon: #191919 !default; -$color-tag-removable-dark-hover-background: #b3b3b3 !default; -$color-tag-removable-dark-active-background: #999999 !default; -$color-toggle-label: #000000 !default; -$color-toggle-off-background: #808080 !default; -$color-toggle-off-circle: #ffffff !default; -$color-toggle-on-background: #ff5800 !default; -$color-toggle-on-circle: #ffffff !default; -$color-toggle-hover-circle: #e6e6e6 !default; -$color-toggle-disabled-background: #e6e6e6 !default; -$color-toggle-disabled-circle: #b3b3b3 !default; -$color-toggle-disabled-label: #808080 !default; -$color-toggle-disabled-checked-background: #b8bef4 !default; -$color-toggle-disabled-checked-circle: #ffffff !default; -$color-tooltip-background: #4d4d4d !default; -$color-tooltip-border: #ffffff !default; -$font-family: LeroyMerlin !default; -$font-weight-light: 300 !default; -$font-weight-regular: 400 !default; -$font-weight-semi-bold: 600 !default; -$preset: bricoman !default; -$radius-s: 2 !default; -$radius-m: 4 !default; -$radius-l: 6 !default; -$shadow-s-x: 0px !default; -$shadow-s-y: 1px !default; -$shadow-s-blur: 5px !default; -$shadow-s-spread: 0px !default; -$shadow-s-opacity: 0.2 !default; -$shadow-m-x: 0px !default; -$shadow-m-y: 2px !default; -$shadow-m-blur: 10px !default; -$shadow-m-spread: 0px !default; -$shadow-m-opacity: 0.2 !default; -$shadow-l-x: 0px !default; -$shadow-l-y: 4px !default; -$shadow-l-blur: 20px !default; -$shadow-l-spread: 0px !default; -$shadow-l-opacity: 0.2 !default; -$magic-unit: 1 !default; -$local-rem-value: 16 !default; -$size-font-10: 2.5625rem !default; // 41px -$size-font-11: 3.0625rem !default; // 49px -$size-font-12: 3.6875rem !default; // 59px -$size-font-01: 0.6815rem !default; // 11px -$size-font-02: 0.75rem !default; // 12px -$size-font-03: 0.8125rem !default; // 13px -$size-font-04: 0.875rem !default; // 14px -$size-font-05: 1rem !default; // 16px -$size-font-06: 1.125rem !default; // 18px -$size-font-07: 1.4375rem !default; // 23px -$size-font-08: 1.75rem !default; // 28px -$size-font-09: 2.125rem !default; // 34px -$size-line-10-xs: 2.5rem !default; // 40px -$size-line-10-s: 3rem !default; // 48px -$size-line-10-m: 3.5rem !default; // 56px -$size-line-10-l: 3.75rem !default; // 60px -$size-line-11-xs: 3rem !default; // 48px -$size-line-11-s: 3.5rem !default; // 56px -$size-line-11-m: 4.25rem !default; // 68px -$size-line-11-l: 4.5rem !default; // 72px -$size-line-12-xs: 3.75rem !default; // 60px -$size-line-12-s: 4.25rem !default; // 68px -$size-line-12-m: 5rem !default; // 80px -$size-line-12-l: 5.5rem !default; // 88px -$size-line-01-xs: 0.75rem !default; // 12px -$size-line-01-s: 0.75rem !default; // 12px -$size-line-01-m: 0.875rem !default; // 14px -$size-line-01-l: 1rem !default; // 16px -$size-line-02-xs: 0.75rem !default; // 12px -$size-line-02-s: 0.875rem !default; // 14px -$size-line-02-m: 1rem !default; // 16px -$size-line-02-l: 1.125rem !default; // 18px -$size-line-03-xs: 0.875rem !default; // 14px -$size-line-03-s: 1rem !default; // 16px -$size-line-03-m: 1.125rem !default; // 18px -$size-line-03-l: 1.25rem !default; // 20px -$size-line-04-xs: 0.875rem !default; // 14px -$size-line-04-s: 1rem !default; // 16px -$size-line-04-m: 1.125rem !default; // 18px -$size-line-04-l: 1.375rem !default; // 22px -$size-line-05-xs: 1rem !default; // 16px -$size-line-05-s: 1.125rem !default; // 18px -$size-line-05-m: 1.375rem !default; // 22px -$size-line-05-l: 1.5rem !default; // 24px -$size-line-06-xs: 1.125rem !default; // 18px -$size-line-06-s: 1.25rem !default; // 20px -$size-line-06-m: 1.5rem !default; // 24px -$size-line-06-l: 1.75rem !default; // 28px -$size-line-07-xs: 1.5rem !default; // 24px -$size-line-07-s: 1.75rem !default; // 28px -$size-line-07-m: 2rem !default; // 32px -$size-line-07-l: 2.25rem !default; // 36px -$size-line-08-xs: 1.75rem !default; // 28px -$size-line-08-s: 2rem !default; // 32px -$size-line-08-m: 2.25rem !default; // 36px -$size-line-08-l: 2.75rem !default; // 44px -$size-line-09-xs: 2.25rem !default; // 36px -$size-line-09-s: 2.5rem !default; // 40px -$size-line-09-m: 2.75rem !default; // 44px -$size-line-09-l: 3.25rem !default; // 52px -$size-gutter-screen-s: 1rem !default; -$size-gutter-screen-m: 2rem !default; -$screen-s: 0px !default; -$screen-s-medium: 320px !default; -$screen-s-large: 360px !default; -$screen-s-xlarge: 390px !default; -$screen-m: 680px !default; -$screen-m-medium: 769px !default; -$screen-l: 1024px !default; -$screen-l-medium: 1100px !default; -$screen-xl: 1280px !default; -$screen-xl-medium: 1440px !default; -$screen-xl-large: 1680px !default; -$screen-xxl: 1920px !default; - -$tokens: ( - 'border': ( - 's': $border-s, - 'm': $border-m, - 'l': $border-l - ), - 'color': ( - 'badge': ( - 'info': ( - 'background': $color-badge-info-background, - 'border': $color-badge-info-border, - 'text': $color-badge-info-text - ), - 'success': ( - 'background': $color-badge-success-background, - 'border': $color-badge-success-border, - 'text': $color-badge-success-text - ), - 'warning': ( - 'background': $color-badge-warning-background, - 'border': $color-badge-warning-border, - 'text': $color-badge-warning-text - ), - 'danger': ( - 'background': $color-badge-danger-background, - 'border': $color-badge-danger-border, - 'text': $color-badge-danger-text - ), - 'neutral': ( - 'background': $color-badge-neutral-background, - 'border': $color-badge-neutral-border, - 'text': $color-badge-neutral-text - ) - ), - 'primary-01': ( - '100': $color-primary-01-100, - '200': $color-primary-01-200, - '300': $color-primary-01-300, - '400': $color-primary-01-400, - '500': $color-primary-01-500, - '600': $color-primary-01-600, - '700': $color-primary-01-700, - '800': $color-primary-01-800, - '900': $color-primary-01-900 - ), - 'primary-02': ( - '100': $color-primary-02-100, - '200': $color-primary-02-200, - '300': $color-primary-02-300, - '400': $color-primary-02-400, - '500': $color-primary-02-500, - '600': $color-primary-02-600, - '700': $color-primary-02-700, - '800': $color-primary-02-800, - '900': $color-primary-02-900 - ), - 'grey': ( - '100': $color-grey-100, - '200': $color-grey-200, - '300': $color-grey-300, - '400': $color-grey-400, - '500': $color-grey-500, - '600': $color-grey-600, - '700': $color-grey-700, - '800': $color-grey-800, - '900': $color-grey-900, - '999': $color-grey-999, - '000': $color-grey-000 - ), - 'secondary-blue': ( - '100': $color-secondary-blue-100, - '200': $color-secondary-blue-200, - '300': $color-secondary-blue-300, - '400': $color-secondary-blue-400, - '500': $color-secondary-blue-500, - '600': $color-secondary-blue-600, - '700': $color-secondary-blue-700, - '800': $color-secondary-blue-800, - '900': $color-secondary-blue-900 - ), - 'secondary-green': ( - '100': $color-secondary-green-100, - '200': $color-secondary-green-200, - '300': $color-secondary-green-300, - '400': $color-secondary-green-400, - '500': $color-secondary-green-500, - '600': $color-secondary-green-600, - '700': $color-secondary-green-700, - '800': $color-secondary-green-800, - '900': $color-secondary-green-900 - ), - 'secondary-purple': ( - '100': $color-secondary-purple-100, - '200': $color-secondary-purple-200, - '300': $color-secondary-purple-300, - '400': $color-secondary-purple-400, - '500': $color-secondary-purple-500, - '600': $color-secondary-purple-600, - '700': $color-secondary-purple-700, - '800': $color-secondary-purple-800, - '900': $color-secondary-purple-900 - ), - 'secondary-red': ( - '100': $color-secondary-red-100, - '200': $color-secondary-red-200, - '300': $color-secondary-red-300, - '400': $color-secondary-red-400, - '500': $color-secondary-red-500, - '600': $color-secondary-red-600, - '700': $color-secondary-red-700, - '800': $color-secondary-red-800, - '900': $color-secondary-red-900 - ), - 'secondary-orange': ( - '100': $color-secondary-orange-100, - '200': $color-secondary-orange-200, - '300': $color-secondary-orange-300, - '400': $color-secondary-orange-400, - '500': $color-secondary-orange-500, - '600': $color-secondary-orange-600, - '700': $color-secondary-orange-700, - '800': $color-secondary-orange-800, - '900': $color-secondary-orange-900 - ), - 'secondary-yellow': ( - '100': $color-secondary-yellow-100, - '200': $color-secondary-yellow-200, - '300': $color-secondary-yellow-300, - '400': $color-secondary-yellow-400, - '500': $color-secondary-yellow-500, - '600': $color-secondary-yellow-600, - '700': $color-secondary-yellow-700, - '800': $color-secondary-yellow-800, - '900': $color-secondary-yellow-900 - ), - 'danger': ( - '100': $color-danger-100, - '200': $color-danger-200, - '300': $color-danger-300, - '400': $color-danger-400, - '500': $color-danger-500, - '600': $color-danger-600, - '700': $color-danger-700, - '800': $color-danger-800, - '900': $color-danger-900 - ), - 'info': ( - '100': $color-info-100, - '200': $color-info-200, - '300': $color-info-300, - '400': $color-info-400, - '500': $color-info-500, - '600': $color-info-600, - '700': $color-info-700, - '800': $color-info-800, - '900': $color-info-900 - ), - 'warning': ( - '100': $color-warning-100, - '200': $color-warning-200, - '300': $color-warning-300, - '400': $color-warning-400, - '500': $color-warning-500, - '600': $color-warning-600, - '700': $color-warning-700, - '800': $color-warning-800, - '900': $color-warning-900 - ), - 'success': ( - '100': $color-success-100, - '200': $color-success-200, - '300': $color-success-300, - '400': $color-success-400, - '500': $color-success-500, - '600': $color-success-600, - '700': $color-success-700, - '800': $color-success-800, - '900': $color-success-900 - ), - 'breadcrumb': ( - 'arrow': $color-breadcrumb-arrow, - 'arrow-invert': $color-breadcrumb-arrow-invert - ), - 'button': ( - 'solid': ( - 'background': $color-button-solid-background, - 'font': $color-button-solid-font, - 'focus': ( - 'border': $color-button-solid-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-disabled-background, - 'font': $color-button-solid-disabled-font - ), - 'active': ( - 'background': $color-button-solid-active-background - ), - 'hover': ( - 'background': $color-button-solid-hover-background, - 'font': $color-button-solid-hover-font - ) - ), - 'solid-primary-02': ( - 'background': $color-button-solid-primary-02-background, - 'font': $color-button-solid-primary-02-font, - 'focus': ( - 'border': $color-button-solid-primary-02-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-primary-02-disabled-background, - 'font': $color-button-solid-primary-02-disabled-font - ), - 'active': ( - 'background': $color-button-solid-primary-02-active-background - ), - 'hover': ( - 'background': $color-button-solid-primary-02-hover-background, - 'font': $color-button-solid-primary-02-hover-font - ) - ), - 'solid-neutral': ( - 'background': $color-button-solid-neutral-background, - 'font': $color-button-solid-neutral-font, - 'focus': ( - 'border': $color-button-solid-neutral-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-neutral-disabled-background, - 'font': $color-button-solid-neutral-disabled-font - ), - 'active': ( - 'background': $color-button-solid-neutral-active-background - ), - 'hover': ( - 'background': $color-button-solid-neutral-hover-background, - 'font': $color-button-solid-neutral-hover-font - ) - ), - 'solid-danger': ( - 'background': $color-button-solid-danger-background, - 'font': $color-button-solid-danger-font, - 'focus': ( - 'border': $color-button-solid-danger-focus-border - ), - 'disabled': ( - 'background': $color-button-solid-danger-disabled-background, - 'font': $color-button-solid-danger-disabled-font - ), - 'active': ( - 'background': $color-button-solid-danger-active-background - ), - 'hover': ( - 'background': $color-button-solid-danger-hover-background, - 'font': $color-button-solid-danger-hover-font - ) - ), - 'bordered': ( - 'background': $color-button-bordered-background, - 'border': $color-button-bordered-border, - 'font': $color-button-bordered-font, - 'focus': ( - 'border': $color-button-bordered-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-disabled-background, - 'font': $color-button-bordered-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-active-background, - 'font': $color-button-bordered-active-font - ), - 'hover': ( - 'background': $color-button-bordered-hover-background, - 'font': $color-button-bordered-hover-font - ) - ), - 'bordered-primary-02': ( - 'background': $color-button-bordered-primary-02-background, - 'border': $color-button-bordered-primary-02-border, - 'font': $color-button-bordered-primary-02-font, - 'focus': ( - 'border': $color-button-bordered-primary-02-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-primary-02-disabled-background, - 'font': $color-button-bordered-primary-02-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-primary-02-active-background - ), - 'hover': ( - 'background': $color-button-bordered-primary-02-hover-background - ) - ), - 'bordered-neutral': ( - 'background': $color-button-bordered-neutral-background, - 'border': $color-button-bordered-neutral-border, - 'font': $color-button-bordered-neutral-font, - 'focus': ( - 'border': $color-button-bordered-neutral-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-neutral-disabled-background, - 'font': $color-button-bordered-neutral-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-neutral-active-background - ), - 'hover': ( - 'background': $color-button-bordered-neutral-hover-background - ) - ), - 'bordered-danger': ( - 'background': $color-button-bordered-danger-background, - 'border': $color-button-bordered-danger-border, - 'font': $color-button-bordered-danger-font, - 'focus': ( - 'border': $color-button-bordered-danger-focus-border - ), - 'disabled': ( - 'background': $color-button-bordered-danger-disabled-background, - 'font': $color-button-bordered-danger-disabled-font - ), - 'active': ( - 'background': $color-button-bordered-danger-active-background, - 'font': $color-button-bordered-danger-active-font - ), - 'hover': ( - 'background': $color-button-bordered-danger-hover-background, - 'font': $color-button-bordered-danger-hover-font - ) - ) - ), - 'card': ( - 'bordered': ( - 'background': $color-card-bordered-background, - 'border': $color-card-bordered-border - ) - ), - 'datatable': ( - 'filters': ( - 'border': $color-datatable-filters-border - ), - 'container': ( - 'background': $color-datatable-container-background - ), - 'thead': ( - 'font': $color-datatable-thead-font - ), - 'sort-arrow': ( - 'default': $color-datatable-sort-arrow-default, - 'active': $color-datatable-sort-arrow-active - ), - 'cell': ( - 'font': $color-datatable-cell-font, - 'background': ( - 'hover': $color-datatable-cell-background-hover, - 'selected': $color-datatable-cell-background-selected - ) - ), - 'subtable': ( - 'background': $color-datatable-subtable-background, - 'border': $color-datatable-subtable-border, - 'font': $color-datatable-subtable-font - ), - 'icon': $color-datatable-icon - ), - 'dialog': ( - 'background': $color-dialog-background, - 'icon': $color-dialog-icon, - 'close': $color-dialog-close, - 'footer': ( - 'shadow': $color-dialog-footer-shadow - ) - ), - 'divider': ( - 'lightest': $color-divider-lightest, - 'light': $color-divider-light, - 'default': $color-divider-default, - 'dark': $color-divider-dark - ), - 'fields': ( - 'error': $color-fields-error, - 'label': $color-fields-label, - 'requirement': $color-fields-requirement, - 'help': $color-fields-help - ), - 'fileuploader': ( - 'font': $color-fileuploader-font, - 'files': ( - 'list': $color-fileuploader-files-list, - 'delete': $color-fileuploader-files-delete - ), - 'valid': $color-fileuploader-valid, - 'alert': $color-fileuploader-alert - ), - 'flag': ( - 'solid': ( - 'background': $color-flag-solid-background, - 'border': $color-flag-solid-border, - 'text': $color-flag-solid-text - ), - 'solid-primary-02': ( - 'background': $color-flag-solid-primary-02-background, - 'border': $color-flag-solid-primary-02-border, - 'text': $color-flag-solid-primary-02-text - ), - 'solid-dark': ( - 'background': $color-flag-solid-dark-background, - 'border': $color-flag-solid-dark-border, - 'text': $color-flag-solid-dark-text - ), - 'solid-light': ( - 'background': $color-flag-solid-light-background, - 'border': $color-flag-solid-light-border, - 'text': $color-flag-solid-light-text - ), - 'solid-danger': ( - 'background': $color-flag-solid-danger-background, - 'border': $color-flag-solid-danger-border, - 'text': $color-flag-solid-danger-text - ), - 'bordered': ( - 'background': $color-flag-bordered-background, - 'border': $color-flag-bordered-border, - 'text': $color-flag-bordered-text - ), - 'bordered-primary-02': ( - 'background': $color-flag-bordered-primary-02-background, - 'border': $color-flag-bordered-primary-02-border, - 'text': $color-flag-bordered-primary-02-text - ), - 'bordered-dark': ( - 'background': $color-flag-bordered-dark-background, - 'border': $color-flag-bordered-dark-border, - 'text': $color-flag-bordered-dark-text - ), - 'bordered-light': ( - 'background': $color-flag-bordered-light-background, - 'border': $color-flag-bordered-light-border, - 'text': $color-flag-bordered-light-text - ), - 'bordered-danger': ( - 'background': $color-flag-bordered-danger-background, - 'border': $color-flag-bordered-danger-border, - 'text': $color-flag-bordered-danger-text - ) - ), - 'focus': ( - 'gap': $color-focus-gap, - 'border': $color-focus-border - ), - 'font': ( - 'primary-01': $color-font-primary-01, - 'primary-02': $color-font-primary-02, - 'darkest': $color-font-darkest, - 'darker': $color-font-darker, - 'dark': $color-font-dark, - 'light': $color-font-light, - 'lightest': $color-font-lightest, - 'info': $color-font-info, - 'success': $color-font-success, - 'warning': $color-font-warning, - 'danger': $color-font-danger - ), - 'heading': ( - 'underline': ( - 'default': $color-heading-underline-default, - 'lightest': $color-heading-underline-lightest - ), - 'line': ( - 'default': $color-heading-line-default, - 'lightest': $color-heading-line-lightest - ) - ), - 'hero': ( - 'cover': ( - 'background': $color-hero-cover-background - ) - ), - 'input': ( - 'text': $color-input-text, - 'border': $color-input-border, - 'placeholder': $color-input-placeholder, - 'background': $color-input-background, - 'disabled': ( - 'background': $color-input-disabled-background, - 'border': $color-input-disabled-border, - 'icon': $color-input-disabled-icon, - 'label': $color-input-disabled-label - ), - 'hover': ( - 'border': $color-input-hover-border - ), - 'focus': ( - 'border': $color-input-focus-border - ), - 'valid': ( - 'border': $color-input-valid-border, - 'hover': ( - 'border': $color-input-valid-hover-border - ) - ), - 'invalid': ( - 'border': $color-input-invalid-border, - 'hover': ( - 'border': $color-input-invalid-hover-border - ) - ), - 'checked': ( - 'border': $color-input-checked-border, - 'background': $color-input-checked-background, - 'icon': $color-input-checked-icon, - 'hover': ( - 'border': $color-input-checked-hover-border - ) - ) - ), - 'link': ( - 'dark': ( - 'base': $color-link-dark-base, - 'visited': $color-link-dark-visited, - 'active': $color-link-dark-active, - 'disabled': $color-link-dark-disabled, - 'hover': $color-link-dark-hover - ), - 'light': ( - 'base': $color-link-light-base, - 'visited': $color-link-light-visited, - 'active': $color-link-light-active, - 'disabled': $color-link-light-disabled, - 'hover': $color-link-light-hover - ), - 'primary': ( - 'base': $color-link-primary-base, - 'visited': $color-link-primary-visited, - 'active': $color-link-primary-active, - 'disabled': $color-link-primary-disabled, - 'hover': $color-link-primary-hover - ), - 'primary-02': ( - 'base': $color-link-primary-02-base, - 'visited': $color-link-primary-02-visited, - 'active': $color-link-primary-02-active, - 'disabled': $color-link-primary-02-disabled, - 'hover': $color-link-primary-02-hover - ), - 'danger': ( - 'base': $color-link-danger-base, - 'visited': $color-link-danger-visited, - 'active': $color-link-danger-active, - 'disabled': $color-link-danger-disabled, - 'hover': $color-link-danger-hover - ) - ), - 'listbox': ( - 'background': $color-listbox-background, - 'border': $color-listbox-border, - 'tile': ( - 'border': $color-listbox-tile-border, - 'shadow': $color-listbox-tile-shadow, - 'hover': ( - 'background': $color-listbox-tile-hover-background - ) - ), - 'disabled': ( - 'background': $color-listbox-disabled-background - ) - ), - 'notification': ( - 'font': $color-notification-font, - 'information': ( - 'background': $color-notification-information-background, - 'border': $color-notification-information-border, - 'icon': $color-notification-information-icon - ), - 'success': ( - 'background': $color-notification-success-background, - 'border': $color-notification-success-border, - 'icon': $color-notification-success-icon - ), - 'warning': ( - 'background': $color-notification-warning-background, - 'border': $color-notification-warning-border, - 'icon': $color-notification-warning-icon - ), - 'danger': ( - 'background': $color-notification-danger-background, - 'border': $color-notification-danger-border, - 'icon': $color-notification-danger-icon - ) - ), - 'option-button': ( - 'label': ( - 'shadow': $color-option-button-label-shadow - ), - 'hover': ( - 'label': ( - 'shadow': $color-option-button-hover-label-shadow - ) - ), - 'checked': ( - 'label': ( - 'border': $color-option-button-checked-label-border, - 'shadow': $color-option-button-checked-label-shadow - ) - ), - 'disabled': ( - 'label': ( - 'background': $color-option-button-disabled-label-background - ) - ) - ), - 'option-card': ( - 'label': ( - 'shadow': $color-option-card-label-shadow - ), - 'hover': ( - 'label': ( - 'shadow': $color-option-card-hover-label-shadow - ) - ), - 'checked': ( - 'label': ( - 'border': $color-option-card-checked-label-border, - 'shadow': $color-option-card-checked-label-shadow - ) - ), - 'disabled': ( - 'content': $color-option-card-disabled-content, - 'label': $color-option-card-disabled-label - ) - ), - 'overlay': ( - 'background': $color-overlay-background, - 'loader': ( - 'background': $color-overlay-loader-background - ) - ), - 'password-input': ( - 'button': ( - 'hover': ( - 'background': $color-password-input-button-hover-background - ) - ) - ), - 'phone-number': ( - 'button': ( - 'border': $color-phone-number-button-border - ), - 'list': ( - 'background': $color-phone-number-list-background - ), - 'item': ( - 'border': $color-phone-number-item-border, - 'focus': ( - 'background': $color-phone-number-item-focus-background - ) - ) - ), - 'progress': ( - 'background': $color-progress-background, - 'indicator': $color-progress-indicator, - 'percentage': ( - 'default': $color-progress-percentage-default, - 'half': $color-progress-percentage-half - ), - 'branded': ( - 'indicator': $color-progress-branded-indicator - ) - ), - 'star': ( - 'empty': $color-star-empty, - 'focus': $color-star-focus, - 'full': $color-star-full, - 'hover': $color-star-hover - ), - 'stepper': ( - 'item': ( - 'background': $color-stepper-item-background, - 'current': ( - 'background': $color-stepper-item-current-background - ) - ), - 'link': ( - 'hover': ( - 'text': $color-stepper-link-hover-text - ) - ), - 'indicator': ( - 'background': $color-stepper-indicator-background, - 'border': $color-stepper-indicator-border, - 'current': ( - 'background': $color-stepper-indicator-current-background, - 'border': $color-stepper-indicator-current-border - ) - ), - 'icon': $color-stepper-icon, - 'title': $color-stepper-title - ), - 'tabs': ( - 'background': $color-tabs-background, - 'shadow': $color-tabs-shadow, - 'default': $color-tabs-default, - 'element': ( - 'background': $color-tabs-element-background - ), - 'hover': $color-tabs-hover, - 'disabled': ( - 'background': $color-tabs-disabled-background - ), - 'active': ( - 'background': $color-tabs-active-background, - 'text': $color-tabs-active-text - ), - 'selected': ( - 'border': $color-tabs-selected-border, - 'text': $color-tabs-selected-text - ), - 'active-disabled': $color-tabs-active-disabled - ), - 'tag': ( - 'text': ( - 'light': ( - 'background': $color-tag-text-light-background, - 'border': $color-tag-text-light-border, - 'text': $color-tag-text-light-text - ), - 'dark': ( - 'background': $color-tag-text-dark-background, - 'border': $color-tag-text-dark-border, - 'text': $color-tag-text-dark-text - ) - ), - 'link': ( - 'light': ( - 'background': $color-tag-link-light-background, - 'border': $color-tag-link-light-border, - 'text': $color-tag-link-light-text, - 'hover': ( - 'background': $color-tag-link-light-hover-background - ), - 'active': ( - 'background': $color-tag-link-light-active-background - ) - ), - 'dark': ( - 'background': $color-tag-link-dark-background, - 'border': $color-tag-link-dark-border, - 'text': $color-tag-link-dark-text, - 'hover': ( - 'background': $color-tag-link-dark-hover-background - ), - 'active': ( - 'background': $color-tag-link-dark-active-background - ) - ) - ), - 'selectable': ( - 'light': ( - 'background': $color-tag-selectable-light-background, - 'border': $color-tag-selectable-light-border, - 'text': $color-tag-selectable-light-text, - 'hover': ( - 'background': $color-tag-selectable-light-hover-background - ), - 'active': ( - 'background': $color-tag-selectable-light-active-background, - 'border': $color-tag-selectable-light-active-border, - 'text': $color-tag-selectable-light-active-text - ), - 'disabled': ( - 'background': $color-tag-selectable-light-disabled-background, - 'text': $color-tag-selectable-light-disabled-text - ), - 'selected': ( - 'background': $color-tag-selectable-light-selected-background, - 'text': $color-tag-selectable-light-selected-text, - 'hover': ( - 'background': $color-tag-selectable-light-selected-hover-background - ) - ) - ), - 'dark': ( - 'background': $color-tag-selectable-dark-background, - 'border': $color-tag-selectable-dark-border, - 'text': $color-tag-selectable-dark-text, - 'hover': ( - 'background': $color-tag-selectable-dark-hover-background - ), - 'active': ( - 'background': $color-tag-selectable-dark-active-background, - 'border': $color-tag-selectable-dark-active-border, - 'text': $color-tag-selectable-dark-active-text - ), - 'selected': ( - 'background': $color-tag-selectable-dark-selected-background, - 'border': $color-tag-selectable-dark-selected-border, - 'text': $color-tag-selectable-dark-selected-text, - 'hover': ( - 'background': $color-tag-selectable-dark-selected-hover-background - ) - ), - 'disabled': ( - 'background': $color-tag-selectable-dark-disabled-background, - 'text': $color-tag-selectable-dark-disabled-text - ) - ) - ), - 'removable': ( - 'light': ( - 'background': $color-tag-removable-light-background, - 'text': $color-tag-removable-light-text, - 'icon': $color-tag-removable-light-icon, - 'hover': ( - 'background': $color-tag-removable-light-hover-background - ), - 'active': ( - 'background': $color-tag-removable-light-active-background - ) - ), - 'dark': ( - 'background': $color-tag-removable-dark-background, - 'text': $color-tag-removable-dark-text, - 'icon': $color-tag-removable-dark-icon, - 'hover': ( - 'background': $color-tag-removable-dark-hover-background - ), - 'active': ( - 'background': $color-tag-removable-dark-active-background - ) - ) - ) - ), - 'toggle': ( - 'label': $color-toggle-label, - 'off': ( - 'background': $color-toggle-off-background, - 'circle': $color-toggle-off-circle - ), - 'on': ( - 'background': $color-toggle-on-background, - 'circle': $color-toggle-on-circle - ), - 'hover': ( - 'circle': $color-toggle-hover-circle - ), - 'disabled': ( - 'background': $color-toggle-disabled-background, - 'circle': $color-toggle-disabled-circle, - 'label': $color-toggle-disabled-label - ), - 'disabled-checked': ( - 'background': $color-toggle-disabled-checked-background, - 'circle': $color-toggle-disabled-checked-circle - ) - ), - 'tooltip': ( - 'background': $color-tooltip-background, - 'border': $color-tooltip-border - ) - ), - 'font': ( - 'family': $font-family, - 'weight': ( - 'light': $font-weight-light, - 'regular': $font-weight-regular, - 'semi-bold': $font-weight-semi-bold - ) - ), - 'preset': $preset, - 'radius': ( - 's': $radius-s, - 'm': $radius-m, - 'l': $radius-l - ), - 'shadow': ( - 's': ( - 'x': $shadow-s-x, - 'y': $shadow-s-y, - 'blur': $shadow-s-blur, - 'spread': $shadow-s-spread, - 'opacity': $shadow-s-opacity - ), - 'm': ( - 'x': $shadow-m-x, - 'y': $shadow-m-y, - 'blur': $shadow-m-blur, - 'spread': $shadow-m-spread, - 'opacity': $shadow-m-opacity - ), - 'l': ( - 'x': $shadow-l-x, - 'y': $shadow-l-y, - 'blur': $shadow-l-blur, - 'spread': $shadow-l-spread, - 'opacity': $shadow-l-opacity - ) - ), - 'magic-unit': $magic-unit, - 'local-rem-value': $local-rem-value, - 'size': ( - 'font': ( - '10': $size-font-10, - '11': $size-font-11, - '12': $size-font-12, - '01': $size-font-01, - '02': $size-font-02, - '03': $size-font-03, - '04': $size-font-04, - '05': $size-font-05, - '06': $size-font-06, - '07': $size-font-07, - '08': $size-font-08, - '09': $size-font-09 - ), - 'line': ( - '10': ( - 'xs': $size-line-10-xs, - 's': $size-line-10-s, - 'm': $size-line-10-m, - 'l': $size-line-10-l - ), - '11': ( - 'xs': $size-line-11-xs, - 's': $size-line-11-s, - 'm': $size-line-11-m, - 'l': $size-line-11-l - ), - '12': ( - 'xs': $size-line-12-xs, - 's': $size-line-12-s, - 'm': $size-line-12-m, - 'l': $size-line-12-l - ), - '01': ( - 'xs': $size-line-01-xs, - 's': $size-line-01-s, - 'm': $size-line-01-m, - 'l': $size-line-01-l - ), - '02': ( - 'xs': $size-line-02-xs, - 's': $size-line-02-s, - 'm': $size-line-02-m, - 'l': $size-line-02-l - ), - '03': ( - 'xs': $size-line-03-xs, - 's': $size-line-03-s, - 'm': $size-line-03-m, - 'l': $size-line-03-l - ), - '04': ( - 'xs': $size-line-04-xs, - 's': $size-line-04-s, - 'm': $size-line-04-m, - 'l': $size-line-04-l - ), - '05': ( - 'xs': $size-line-05-xs, - 's': $size-line-05-s, - 'm': $size-line-05-m, - 'l': $size-line-05-l - ), - '06': ( - 'xs': $size-line-06-xs, - 's': $size-line-06-s, - 'm': $size-line-06-m, - 'l': $size-line-06-l - ), - '07': ( - 'xs': $size-line-07-xs, - 's': $size-line-07-s, - 'm': $size-line-07-m, - 'l': $size-line-07-l - ), - '08': ( - 'xs': $size-line-08-xs, - 's': $size-line-08-s, - 'm': $size-line-08-m, - 'l': $size-line-08-l - ), - '09': ( - 'xs': $size-line-09-xs, - 's': $size-line-09-s, - 'm': $size-line-09-m, - 'l': $size-line-09-l - ) - ), - 'gutter': ( - 'screen': ( - 's': $size-gutter-screen-s, - 'm': $size-gutter-screen-m - ) - ) - ), - 'screen': ( - 's': $screen-s, - 's-medium': $screen-s-medium, - 's-large': $screen-s-large, - 's-xlarge': $screen-s-xlarge, - 'm': $screen-m, - 'm-medium': $screen-m-medium, - 'l': $screen-l, - 'l-medium': $screen-l-medium, - 'xl': $screen-xl, - 'xl-medium': $screen-xl-medium, - 'xl-large': $screen-xl-large, - 'xxl': $screen-xxl - ) -); diff --git a/packages/tokens/build/lm/css/_variables.scss b/packages/tokens/build/css/_variables.scss similarity index 100% rename from packages/tokens/build/lm/css/_variables.scss rename to packages/tokens/build/css/_variables.scss diff --git a/packages/tokens/build/lm/css/root.scss b/packages/tokens/build/css/root.scss similarity index 100% rename from packages/tokens/build/lm/css/root.scss rename to packages/tokens/build/css/root.scss diff --git a/packages/tokens/build/ios/StyleDictionaryColor.h b/packages/tokens/build/ios/StyleDictionaryColor.h new file mode 100644 index 000000000..b773c5eac --- /dev/null +++ b/packages/tokens/build/ios/StyleDictionaryColor.h @@ -0,0 +1,481 @@ + +// +// StyleDictionaryColor.h +// + +#import + +typedef NS_ENUM(NSInteger, StyleDictionaryColorName) { +ColorBadgeInfoBackground, +ColorBadgeInfoBorder, +ColorBadgeInfoText, +ColorBadgeSuccessBackground, +ColorBadgeSuccessBorder, +ColorBadgeSuccessText, +ColorBadgeWarningBackground, +ColorBadgeWarningBorder, +ColorBadgeWarningText, +ColorBadgeDangerBackground, +ColorBadgeDangerBorder, +ColorBadgeDangerText, +ColorBadgeNeutralBackground, +ColorBadgeNeutralBorder, +ColorBadgeNeutralText, +ColorPrimary01100, +ColorPrimary01200, +ColorPrimary01300, +ColorPrimary01400, +ColorPrimary01500, +ColorPrimary01600, +ColorPrimary01700, +ColorPrimary01800, +ColorPrimary01900, +ColorPrimary02100, +ColorPrimary02200, +ColorPrimary02300, +ColorPrimary02400, +ColorPrimary02500, +ColorPrimary02600, +ColorPrimary02700, +ColorPrimary02800, +ColorPrimary02900, +ColorGrey100, +ColorGrey200, +ColorGrey300, +ColorGrey400, +ColorGrey500, +ColorGrey600, +ColorGrey700, +ColorGrey800, +ColorGrey900, +ColorGrey999, +ColorGrey000, +ColorSecondaryBlue100, +ColorSecondaryBlue200, +ColorSecondaryBlue300, +ColorSecondaryBlue400, +ColorSecondaryBlue500, +ColorSecondaryBlue600, +ColorSecondaryBlue700, +ColorSecondaryBlue800, +ColorSecondaryBlue900, +ColorSecondaryGreen100, +ColorSecondaryGreen200, +ColorSecondaryGreen300, +ColorSecondaryGreen400, +ColorSecondaryGreen500, +ColorSecondaryGreen600, +ColorSecondaryGreen700, +ColorSecondaryGreen800, +ColorSecondaryGreen900, +ColorSecondaryPurple100, +ColorSecondaryPurple200, +ColorSecondaryPurple300, +ColorSecondaryPurple400, +ColorSecondaryPurple500, +ColorSecondaryPurple600, +ColorSecondaryPurple700, +ColorSecondaryPurple800, +ColorSecondaryPurple900, +ColorSecondaryRed100, +ColorSecondaryRed200, +ColorSecondaryRed300, +ColorSecondaryRed400, +ColorSecondaryRed500, +ColorSecondaryRed600, +ColorSecondaryRed700, +ColorSecondaryRed800, +ColorSecondaryRed900, +ColorSecondaryOrange100, +ColorSecondaryOrange200, +ColorSecondaryOrange300, +ColorSecondaryOrange400, +ColorSecondaryOrange500, +ColorSecondaryOrange600, +ColorSecondaryOrange700, +ColorSecondaryOrange800, +ColorSecondaryOrange900, +ColorSecondaryYellow100, +ColorSecondaryYellow200, +ColorSecondaryYellow300, +ColorSecondaryYellow400, +ColorSecondaryYellow500, +ColorSecondaryYellow600, +ColorSecondaryYellow700, +ColorSecondaryYellow800, +ColorSecondaryYellow900, +ColorDanger100, +ColorDanger200, +ColorDanger300, +ColorDanger400, +ColorDanger500, +ColorDanger600, +ColorDanger700, +ColorDanger800, +ColorDanger900, +ColorInfo100, +ColorInfo200, +ColorInfo300, +ColorInfo400, +ColorInfo500, +ColorInfo600, +ColorInfo700, +ColorInfo800, +ColorInfo900, +ColorWarning100, +ColorWarning200, +ColorWarning300, +ColorWarning400, +ColorWarning500, +ColorWarning600, +ColorWarning700, +ColorWarning800, +ColorWarning900, +ColorSuccess100, +ColorSuccess200, +ColorSuccess300, +ColorSuccess400, +ColorSuccess500, +ColorSuccess600, +ColorSuccess700, +ColorSuccess800, +ColorSuccess900, +ColorBreadcrumbArrow, +ColorBreadcrumbArrowInvert, +ColorButtonSolidBackground, +ColorButtonSolidFont, +ColorButtonSolidFocusBorder, +ColorButtonSolidDisabledBackground, +ColorButtonSolidDisabledFont, +ColorButtonSolidActiveBackground, +ColorButtonSolidHoverBackground, +ColorButtonSolidHoverFont, +ColorButtonSolidPrimary02Background, +ColorButtonSolidPrimary02Font, +ColorButtonSolidPrimary02FocusBorder, +ColorButtonSolidPrimary02DisabledBackground, +ColorButtonSolidPrimary02DisabledFont, +ColorButtonSolidPrimary02ActiveBackground, +ColorButtonSolidPrimary02HoverBackground, +ColorButtonSolidPrimary02HoverFont, +ColorButtonSolidNeutralBackground, +ColorButtonSolidNeutralFont, +ColorButtonSolidNeutralFocusBorder, +ColorButtonSolidNeutralDisabledBackground, +ColorButtonSolidNeutralDisabledFont, +ColorButtonSolidNeutralActiveBackground, +ColorButtonSolidNeutralHoverBackground, +ColorButtonSolidNeutralHoverFont, +ColorButtonSolidDangerBackground, +ColorButtonSolidDangerFont, +ColorButtonSolidDangerFocusBorder, +ColorButtonSolidDangerDisabledBackground, +ColorButtonSolidDangerDisabledFont, +ColorButtonSolidDangerActiveBackground, +ColorButtonSolidDangerHoverBackground, +ColorButtonSolidDangerHoverFont, +ColorButtonBorderedBackground, +ColorButtonBorderedBorder, +ColorButtonBorderedFont, +ColorButtonBorderedFocusBorder, +ColorButtonBorderedDisabledBackground, +ColorButtonBorderedDisabledFont, +ColorButtonBorderedActiveBackground, +ColorButtonBorderedActiveFont, +ColorButtonBorderedHoverBackground, +ColorButtonBorderedHoverFont, +ColorButtonBorderedPrimary02Background, +ColorButtonBorderedPrimary02Border, +ColorButtonBorderedPrimary02Font, +ColorButtonBorderedPrimary02FocusBorder, +ColorButtonBorderedPrimary02DisabledBackground, +ColorButtonBorderedPrimary02DisabledFont, +ColorButtonBorderedPrimary02ActiveBackground, +ColorButtonBorderedPrimary02HoverBackground, +ColorButtonBorderedNeutralBackground, +ColorButtonBorderedNeutralBorder, +ColorButtonBorderedNeutralFont, +ColorButtonBorderedNeutralFocusBorder, +ColorButtonBorderedNeutralDisabledBackground, +ColorButtonBorderedNeutralDisabledFont, +ColorButtonBorderedNeutralActiveBackground, +ColorButtonBorderedNeutralHoverBackground, +ColorButtonBorderedDangerBackground, +ColorButtonBorderedDangerBorder, +ColorButtonBorderedDangerFont, +ColorButtonBorderedDangerFocusBorder, +ColorButtonBorderedDangerDisabledBackground, +ColorButtonBorderedDangerDisabledFont, +ColorButtonBorderedDangerActiveBackground, +ColorButtonBorderedDangerActiveFont, +ColorButtonBorderedDangerHoverBackground, +ColorButtonBorderedDangerHoverFont, +ColorCardBorderedBackground, +ColorCardBorderedBorder, +ColorDatatableFiltersBorder, +ColorDatatableContainerBackground, +ColorDatatableTheadFont, +ColorDatatableSortArrowDefault, +ColorDatatableSortArrowActive, +ColorDatatableCellFont, +ColorDatatableCellBackgroundHover, +ColorDatatableCellBackgroundSelected, +ColorDatatableSubtableBackground, +ColorDatatableSubtableBorder, +ColorDatatableSubtableFont, +ColorDatatableIcon, +ColorDatatableEmptyBackground, +ColorDatatableEmptyColor, +ColorDialogBackground, +ColorDialogIcon, +ColorDialogClose, +ColorDialogFooterShadow, +ColorDividerLightest, +ColorDividerLight, +ColorDividerDefault, +ColorDividerDark, +ColorFieldsError, +ColorFieldsLabel, +ColorFieldsRequirement, +ColorFieldsHelp, +ColorFileuploaderFont, +ColorFileuploaderFilesList, +ColorFileuploaderFilesDelete, +ColorFileuploaderValid, +ColorFileuploaderAlert, +ColorFlagSolidBackground, +ColorFlagSolidBorder, +ColorFlagSolidText, +ColorFlagSolidPrimary02Background, +ColorFlagSolidPrimary02Border, +ColorFlagSolidPrimary02Text, +ColorFlagSolidDarkBackground, +ColorFlagSolidDarkBorder, +ColorFlagSolidDarkText, +ColorFlagSolidLightBackground, +ColorFlagSolidLightBorder, +ColorFlagSolidLightText, +ColorFlagSolidDangerBackground, +ColorFlagSolidDangerBorder, +ColorFlagSolidDangerText, +ColorFlagBorderedBackground, +ColorFlagBorderedBorder, +ColorFlagBorderedText, +ColorFlagBorderedPrimary02Background, +ColorFlagBorderedPrimary02Border, +ColorFlagBorderedPrimary02Text, +ColorFlagBorderedDarkBackground, +ColorFlagBorderedDarkBorder, +ColorFlagBorderedDarkText, +ColorFlagBorderedLightBackground, +ColorFlagBorderedLightBorder, +ColorFlagBorderedLightText, +ColorFlagBorderedDangerBackground, +ColorFlagBorderedDangerBorder, +ColorFlagBorderedDangerText, +ColorFocusGap, +ColorFocusBorder, +ColorFontPrimary01, +ColorFontPrimary02, +ColorFontDarkest, +ColorFontDarker, +ColorFontDark, +ColorFontLight, +ColorFontLightest, +ColorFontInfo, +ColorFontSuccess, +ColorFontWarning, +ColorFontDanger, +ColorHeadingUnderlineDefault, +ColorHeadingUnderlineLightest, +ColorHeroCoverBackground, +ColorInputText, +ColorInputBorder, +ColorInputPlaceholder, +ColorInputBackground, +ColorInputDisabledBackground, +ColorInputDisabledBorder, +ColorInputDisabledIcon, +ColorInputDisabledLabel, +ColorInputHoverBorder, +ColorInputFocusBorder, +ColorInputValidBorder, +ColorInputValidHoverBorder, +ColorInputInvalidBorder, +ColorInputInvalidHoverBorder, +ColorInputCheckedBorder, +ColorInputCheckedBackground, +ColorInputCheckedIcon, +ColorInputCheckedHoverBorder, +ColorLinkDarkBase, +ColorLinkDarkVisited, +ColorLinkDarkActive, +ColorLinkDarkDisabled, +ColorLinkDarkHover, +ColorLinkLightBase, +ColorLinkLightVisited, +ColorLinkLightActive, +ColorLinkLightDisabled, +ColorLinkLightHover, +ColorLinkPrimaryBase, +ColorLinkPrimaryVisited, +ColorLinkPrimaryActive, +ColorLinkPrimaryDisabled, +ColorLinkPrimaryHover, +ColorLinkPrimary02Base, +ColorLinkPrimary02Visited, +ColorLinkPrimary02Active, +ColorLinkPrimary02Disabled, +ColorLinkPrimary02Hover, +ColorLinkDangerBase, +ColorLinkDangerVisited, +ColorLinkDangerActive, +ColorLinkDangerDisabled, +ColorLinkDangerHover, +ColorListboxBackground, +ColorListboxBorder, +ColorListboxTileBorder, +ColorListboxTileShadow, +ColorListboxTileHoverBackground, +ColorListboxDisabledBackground, +ColorNotificationFont, +ColorNotificationInformationBackground, +ColorNotificationInformationBorder, +ColorNotificationInformationIcon, +ColorNotificationSuccessBackground, +ColorNotificationSuccessBorder, +ColorNotificationSuccessIcon, +ColorNotificationWarningBackground, +ColorNotificationWarningBorder, +ColorNotificationWarningIcon, +ColorNotificationDangerBackground, +ColorNotificationDangerBorder, +ColorNotificationDangerIcon, +ColorOptionButtonLabelShadow, +ColorOptionButtonHoverLabelShadow, +ColorOptionButtonCheckedLabelBorder, +ColorOptionButtonCheckedLabelShadow, +ColorOptionButtonDisabledLabelBackground, +ColorOptionCardLabelShadow, +ColorOptionCardHoverLabelShadow, +ColorOptionCardCheckedLabelBorder, +ColorOptionCardCheckedLabelShadow, +ColorOptionCardDisabledContent, +ColorOptionCardDisabledLabel, +ColorOverlayBackground, +ColorOverlayLoaderBackground, +ColorPasswordInputButtonHoverBackground, +ColorPhoneNumberButtonBorder, +ColorPhoneNumberListBackground, +ColorPhoneNumberItemBorder, +ColorPhoneNumberItemFocusBackground, +ColorProgressBackground, +ColorProgressIndicator, +ColorProgressPercentageDefault, +ColorProgressPercentageHalf, +ColorSidebarBackground, +ColorSidebarFeatureBackground, +ColorSidebarFeatureHoverBackground, +ColorSidebarFeatureSelectedBackground, +ColorSidebarFeatureDisabledBackground, +ColorSidebarUserBackground, +ColorSidebarDividerBackground, +ColorSidebarIcon, +ColorSidebarTextBackground, +ColorSidebarTextColor, +ColorSidebarScrollBackground, +ColorSidebarScrollColor, +ColorStarEmpty, +ColorStarFocus, +ColorStarFull, +ColorStarHover, +ColorStepperItemBackground, +ColorStepperItemCurrentBackground, +ColorStepperLinkHoverText, +ColorStepperIndicatorBackground, +ColorStepperIndicatorBorder, +ColorStepperIndicatorCurrentBackground, +ColorStepperIndicatorCurrentBorder, +ColorStepperIcon, +ColorStepperTitle, +ColorTabsBackground, +ColorTabsShadow, +ColorTabsDefault, +ColorTabsElementBackground, +ColorTabsHover, +ColorTabsDisabledBackground, +ColorTabsActiveBackground, +ColorTabsActiveText, +ColorTabsSelectedBorder, +ColorTabsSelectedText, +ColorTabsActiveDisabled, +ColorTagTextLightBackground, +ColorTagTextLightBorder, +ColorTagTextLightText, +ColorTagTextDarkBackground, +ColorTagTextDarkBorder, +ColorTagTextDarkText, +ColorTagLinkLightBackground, +ColorTagLinkLightBorder, +ColorTagLinkLightText, +ColorTagLinkLightHoverBackground, +ColorTagLinkLightActiveBackground, +ColorTagLinkDarkBackground, +ColorTagLinkDarkBorder, +ColorTagLinkDarkText, +ColorTagLinkDarkHoverBackground, +ColorTagLinkDarkActiveBackground, +ColorTagSelectableLightBackground, +ColorTagSelectableLightBorder, +ColorTagSelectableLightText, +ColorTagSelectableLightHoverBackground, +ColorTagSelectableLightActiveBackground, +ColorTagSelectableLightActiveBorder, +ColorTagSelectableLightActiveText, +ColorTagSelectableLightDisabledBackground, +ColorTagSelectableLightDisabledText, +ColorTagSelectableLightSelectedBackground, +ColorTagSelectableLightSelectedText, +ColorTagSelectableLightSelectedHoverBackground, +ColorTagSelectableDarkBackground, +ColorTagSelectableDarkBorder, +ColorTagSelectableDarkText, +ColorTagSelectableDarkHoverBackground, +ColorTagSelectableDarkActiveBackground, +ColorTagSelectableDarkActiveBorder, +ColorTagSelectableDarkActiveText, +ColorTagSelectableDarkSelectedBackground, +ColorTagSelectableDarkSelectedBorder, +ColorTagSelectableDarkSelectedText, +ColorTagSelectableDarkSelectedHoverBackground, +ColorTagSelectableDarkDisabledBackground, +ColorTagSelectableDarkDisabledText, +ColorTagRemovableLightBackground, +ColorTagRemovableLightText, +ColorTagRemovableLightIcon, +ColorTagRemovableLightHoverBackground, +ColorTagRemovableLightActiveBackground, +ColorTagRemovableDarkBackground, +ColorTagRemovableDarkText, +ColorTagRemovableDarkIcon, +ColorTagRemovableDarkHoverBackground, +ColorTagRemovableDarkActiveBackground, +ColorToggleLabel, +ColorToggleOffBackground, +ColorToggleOffCircle, +ColorToggleOnBackground, +ColorToggleOnCircle, +ColorToggleHoverCircle, +ColorToggleDisabledBackground, +ColorToggleDisabledCircle, +ColorToggleDisabledLabel, +ColorToggleDisabledCheckedBackground, +ColorToggleDisabledCheckedCircle, +ColorTooltipBackground, +ColorTooltipBorder +}; + +@interface StyleDictionaryColor : NSObject ++ (NSArray *)values; ++ (UIColor *)color:(StyleDictionaryColorName)color; +@end diff --git a/packages/tokens/build/ios/StyleDictionaryColor.m b/packages/tokens/build/ios/StyleDictionaryColor.m new file mode 100644 index 000000000..2e3af3924 --- /dev/null +++ b/packages/tokens/build/ios/StyleDictionaryColor.m @@ -0,0 +1,493 @@ + +// +// StyleDictionaryColor.m +// + +#import "StyleDictionaryColor.h" + +@implementation StyleDictionaryColor + ++ (UIColor *)color:(StyleDictionaryColorName)colorEnum{ + return [[self values] objectAtIndex:colorEnum]; +} + ++ (NSArray *)values { + static NSArray* colorArray; + static dispatch_once_t onceToken; + + dispatch_once(&onceToken, ^{ + colorArray = @[ +[UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.361f blue:0.569f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.208f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.620f green:0.816f blue:0.373f alpha:1.000f], +[UIColor colorWithRed:0.471f green:0.745f blue:0.125f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.008f green:0.212f blue:0.094f alpha:1.000f], +[UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f], +[UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.718f blue:0.757f alpha:1.000f], +[UIColor colorWithRed:0.561f green:0.580f blue:0.639f alpha:1.000f], +[UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f], +[UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f], +[UIColor colorWithRed:0.204f green:0.231f blue:0.298f alpha:1.000f], +[UIColor colorWithRed:0.141f green:0.161f blue:0.220f alpha:1.000f], +[UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f], +[UIColor colorWithRed:0.655f green:0.851f blue:0.929f alpha:1.000f], +[UIColor colorWithRed:0.451f green:0.765f blue:0.886f alpha:1.000f], +[UIColor colorWithRed:0.247f green:0.675f blue:0.843f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.361f blue:0.569f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.227f blue:0.361f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.165f blue:0.255f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.620f green:0.816f blue:0.373f alpha:1.000f], +[UIColor colorWithRed:0.471f green:0.745f blue:0.125f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.008f green:0.212f blue:0.094f alpha:1.000f], +[UIColor colorWithRed:0.937f green:0.922f blue:0.996f alpha:1.000f], +[UIColor colorWithRed:0.780f green:0.690f blue:0.980f alpha:1.000f], +[UIColor colorWithRed:0.647f green:0.459f blue:0.953f alpha:1.000f], +[UIColor colorWithRed:0.533f green:0.231f blue:0.914f alpha:1.000f], +[UIColor colorWithRed:0.439f green:0.000f blue:0.867f alpha:1.000f], +[UIColor colorWithRed:0.345f green:0.012f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.259f green:0.020f blue:0.541f alpha:1.000f], +[UIColor colorWithRed:0.180f green:0.024f blue:0.388f alpha:1.000f], +[UIColor colorWithRed:0.110f green:0.020f blue:0.239f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f], +[UIColor colorWithRed:0.973f green:0.737f blue:0.733f alpha:1.000f], +[UIColor colorWithRed:0.953f green:0.553f blue:0.549f alpha:1.000f], +[UIColor colorWithRed:0.937f green:0.373f blue:0.361f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.176f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f], +[UIColor colorWithRed:0.973f green:0.824f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.957f green:0.698f blue:0.494f alpha:1.000f], +[UIColor colorWithRed:0.937f green:0.576f blue:0.290f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.208f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.106f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.212f green:0.055f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:0.973f blue:0.886f alpha:1.000f], +[UIColor colorWithRed:1.000f green:0.922f blue:0.686f alpha:1.000f], +[UIColor colorWithRed:0.996f green:0.878f blue:0.490f alpha:1.000f], +[UIColor colorWithRed:0.988f green:0.839f blue:0.298f alpha:1.000f], +[UIColor colorWithRed:0.973f green:0.800f blue:0.110f alpha:1.000f], +[UIColor colorWithRed:0.788f green:0.635f blue:0.106f alpha:1.000f], +[UIColor colorWithRed:0.612f green:0.482f blue:0.094f alpha:1.000f], +[UIColor colorWithRed:0.439f green:0.337f blue:0.075f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.208f blue:0.051f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f], +[UIColor colorWithRed:0.973f green:0.737f blue:0.733f alpha:1.000f], +[UIColor colorWithRed:0.953f green:0.553f blue:0.549f alpha:1.000f], +[UIColor colorWithRed:0.937f green:0.373f blue:0.361f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.176f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f], +[UIColor colorWithRed:0.655f green:0.851f blue:0.929f alpha:1.000f], +[UIColor colorWithRed:0.451f green:0.765f blue:0.886f alpha:1.000f], +[UIColor colorWithRed:0.247f green:0.675f blue:0.843f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.361f blue:0.569f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.227f blue:0.361f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.165f blue:0.255f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f], +[UIColor colorWithRed:0.973f green:0.824f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.957f green:0.698f blue:0.494f alpha:1.000f], +[UIColor colorWithRed:0.937f green:0.576f blue:0.290f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.208f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.106f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.212f green:0.055f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.620f green:0.816f blue:0.373f alpha:1.000f], +[UIColor colorWithRed:0.471f green:0.745f blue:0.125f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.008f green:0.212f blue:0.094f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f], +[UIColor colorWithRed:0.141f green:0.161f blue:0.220f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f], +[UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f], +[UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f], +[UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.973f green:0.737f blue:0.733f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f], +[UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f], +[UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.286f green:0.310f blue:0.376f alpha:1.000f], +[UIColor colorWithRed:0.204f green:0.231f blue:0.298f alpha:1.000f], +[UIColor colorWithRed:0.204f green:0.231f blue:0.298f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.090f green:0.106f blue:0.149f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.549f green:0.000f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.325f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.855f green:0.937f blue:0.969f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.482f blue:0.706f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.945f blue:0.910f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.322f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.992f green:0.918f blue:0.918f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.188f blue:0.176f alpha:1.000f], +[UIColor colorWithRed:0.776f green:0.067f blue:0.071f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.922f green:0.961f blue:0.871f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f], +[UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.718f blue:0.757f alpha:1.000f], +[UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f], +[UIColor colorWithRed:0.416f green:0.439f blue:0.506f alpha:1.000f], +[UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.561f green:0.580f blue:0.639f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.043f green:0.588f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.918f green:0.451f blue:0.082f alpha:1.000f], +[UIColor colorWithRed:0.957f green:0.698f blue:0.494f alpha:1.000f], +[UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.933f green:0.937f blue:0.945f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.812f green:0.824f blue:0.847f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.620f green:0.816f blue:0.373f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:0.012f green:0.314f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.094f green:0.533f blue:0.012f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.412f blue:0.008f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.471f green:0.745f blue:0.125f alpha:1.000f], +[UIColor colorWithRed:0.471f green:0.745f blue:0.125f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.620f green:0.816f blue:0.373f alpha:1.000f], +[UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.200f green:0.200f blue:0.200f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:0.800f green:0.800f blue:0.800f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.098f green:0.098f blue:0.098f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.600f green:0.600f blue:0.600f alpha:1.000f], +[UIColor colorWithRed:0.000f green:0.000f blue:0.000f alpha:1.000f], +[UIColor colorWithRed:0.400f green:0.400f blue:0.400f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.275f green:0.651f blue:0.063f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.902f green:0.902f blue:0.902f alpha:1.000f], +[UIColor colorWithRed:0.702f green:0.702f blue:0.702f alpha:1.000f], +[UIColor colorWithRed:0.502f green:0.502f blue:0.502f alpha:1.000f], +[UIColor colorWithRed:0.773f green:0.890f blue:0.620f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f], +[UIColor colorWithRed:0.302f green:0.302f blue:0.302f alpha:1.000f], +[UIColor colorWithRed:1.000f green:1.000f blue:1.000f alpha:1.000f] + ]; + }); + + return colorArray; +} + +@end diff --git a/packages/tokens/build/ios/StyleDictionaryColor.swift b/packages/tokens/build/ios/StyleDictionaryColor.swift new file mode 100644 index 000000000..0b2a80026 --- /dev/null +++ b/packages/tokens/build/ios/StyleDictionaryColor.swift @@ -0,0 +1,476 @@ + +// +// StyleDictionaryColor.swift +// + +import UIKit + +public class StyleDictionaryColor { + public static let colorBadgeDangerBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1) + public static let colorBadgeDangerBorder = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1) + public static let colorBadgeDangerText = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorBadgeInfoBackground = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1) + public static let colorBadgeInfoBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorBadgeInfoText = UIColor(red: 0.000, green: 0.361, blue: 0.569, alpha: 1) + public static let colorBadgeNeutralBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorBadgeNeutralBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorBadgeNeutralText = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1) + public static let colorBadgeSuccessBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorBadgeSuccessBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorBadgeSuccessText = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorBadgeWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1) + public static let colorBadgeWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1) + public static let colorBadgeWarningText = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1) + public static let colorBreadcrumbArrow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorBreadcrumbArrowInvert = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonBorderedActiveBackground = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorButtonBorderedActiveFont = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorButtonBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonBorderedBorder = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorButtonBorderedDangerActiveBackground = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1) + public static let colorButtonBorderedDangerActiveFont = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1) + public static let colorButtonBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonBorderedDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorButtonBorderedDangerDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonBorderedDangerDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonBorderedDangerFocusBorder = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorButtonBorderedDangerFont = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorButtonBorderedDangerHoverBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1) + public static let colorButtonBorderedDangerHoverFont = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorButtonBorderedDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonBorderedDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonBorderedFocusBorder = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorButtonBorderedFont = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorButtonBorderedHoverBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorButtonBorderedHoverFont = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorButtonBorderedNeutralActiveBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonBorderedNeutralBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonBorderedNeutralBorder = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorButtonBorderedNeutralDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonBorderedNeutralDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonBorderedNeutralFocusBorder = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorButtonBorderedNeutralFont = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorButtonBorderedNeutralHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorButtonBorderedPrimary02ActiveBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1) + public static let colorButtonBorderedPrimary02Background = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonBorderedPrimary02Border = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1) + public static let colorButtonBorderedPrimary02DisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonBorderedPrimary02DisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonBorderedPrimary02FocusBorder = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1) + public static let colorButtonBorderedPrimary02Font = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1) + public static let colorButtonBorderedPrimary02HoverBackground = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1) + public static let colorButtonSolidActiveBackground = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorButtonSolidBackground = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorButtonSolidDangerActiveBackground = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorButtonSolidDangerBackground = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorButtonSolidDangerDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonSolidDangerDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonSolidDangerFocusBorder = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorButtonSolidDangerFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidDangerHoverBackground = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorButtonSolidDangerHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonSolidDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonSolidFocusBorder = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorButtonSolidFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorButtonSolidHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidNeutralActiveBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorButtonSolidNeutralBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorButtonSolidNeutralDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonSolidNeutralDisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonSolidNeutralFocusBorder = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorButtonSolidNeutralFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidNeutralHoverBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorButtonSolidNeutralHoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidPrimary02ActiveBackground = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1) + public static let colorButtonSolidPrimary02Background = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1) + public static let colorButtonSolidPrimary02DisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorButtonSolidPrimary02DisabledFont = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorButtonSolidPrimary02FocusBorder = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1) + public static let colorButtonSolidPrimary02Font = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorButtonSolidPrimary02HoverBackground = UIColor(red: 0.141, green: 0.161, blue: 0.220, alpha: 1) + public static let colorButtonSolidPrimary02HoverFont = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorCardBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorCardBorderedBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorDanger100 = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1) + public static let colorDanger200 = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1) + public static let colorDanger300 = UIColor(red: 0.953, green: 0.553, blue: 0.549, alpha: 1) + public static let colorDanger400 = UIColor(red: 0.937, green: 0.373, blue: 0.361, alpha: 1) + public static let colorDanger500 = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1) + public static let colorDanger600 = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorDanger700 = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorDanger800 = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1) + public static let colorDanger900 = UIColor(red: 0.176, green: 0.000, blue: 0.000, alpha: 1) + public static let colorDatatableCellBackgroundHover = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorDatatableCellBackgroundSelected = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorDatatableCellFont = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorDatatableContainerBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorDatatableEmptyBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorDatatableEmptyColor = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorDatatableFiltersBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorDatatableIcon = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorDatatableSortArrowActive = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorDatatableSortArrowDefault = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorDatatableSubtableBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorDatatableSubtableBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorDatatableSubtableFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorDatatableTheadFont = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorDialogBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorDialogClose = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorDialogFooterShadow = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorDialogIcon = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorDividerDark = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorDividerDefault = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorDividerLight = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorDividerLightest = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFieldsError = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFieldsHelp = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorFieldsLabel = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorFieldsRequirement = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorFileuploaderAlert = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFileuploaderFilesDelete = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorFileuploaderFilesList = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorFileuploaderFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFileuploaderValid = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorFlagBorderedBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagBorderedBorder = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorFlagBorderedDangerBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagBorderedDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFlagBorderedDangerText = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFlagBorderedDarkBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagBorderedDarkBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFlagBorderedDarkText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFlagBorderedLightBackground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFlagBorderedLightBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagBorderedLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagBorderedPrimary02Background = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagBorderedPrimary02Border = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1) + public static let colorFlagBorderedPrimary02Text = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1) + public static let colorFlagBorderedText = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorFlagSolidBackground = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorFlagSolidBorder = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorFlagSolidDangerBackground = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFlagSolidDangerBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFlagSolidDangerText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagSolidDarkBackground = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFlagSolidDarkBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFlagSolidDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagSolidLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagSolidLightBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagSolidLightText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFlagSolidPrimary02Background = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1) + public static let colorFlagSolidPrimary02Border = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1) + public static let colorFlagSolidPrimary02Text = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFlagSolidText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFocusBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorFocusGap = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFontDanger = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorFontDark = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorFontDarker = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorFontDarkest = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorFontInfo = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1) + public static let colorFontLight = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorFontLightest = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorFontPrimary01 = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorFontPrimary02 = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1) + public static let colorFontSuccess = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorFontWarning = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1) + public static let colorGrey000 = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorGrey100 = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorGrey200 = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorGrey300 = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorGrey400 = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1) + public static let colorGrey500 = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorGrey600 = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorGrey700 = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1) + public static let colorGrey800 = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorGrey900 = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorGrey999 = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorHeadingUnderlineDefault = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorHeadingUnderlineLightest = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorHeroCoverBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorInfo100 = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1) + public static let colorInfo200 = UIColor(red: 0.655, green: 0.851, blue: 0.929, alpha: 1) + public static let colorInfo300 = UIColor(red: 0.451, green: 0.765, blue: 0.886, alpha: 1) + public static let colorInfo400 = UIColor(red: 0.247, green: 0.675, blue: 0.843, alpha: 1) + public static let colorInfo500 = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorInfo600 = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1) + public static let colorInfo700 = UIColor(red: 0.000, green: 0.361, blue: 0.569, alpha: 1) + public static let colorInfo800 = UIColor(red: 0.000, green: 0.227, blue: 0.361, alpha: 1) + public static let colorInfo900 = UIColor(red: 0.000, green: 0.165, blue: 0.255, alpha: 1) + public static let colorInputBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorInputBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorInputCheckedBackground = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorInputCheckedBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorInputCheckedHoverBorder = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorInputCheckedIcon = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorInputDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorInputDisabledBorder = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorInputDisabledIcon = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1) + public static let colorInputDisabledLabel = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorInputFocusBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorInputHoverBorder = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorInputInvalidBorder = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorInputInvalidHoverBorder = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1) + public static let colorInputPlaceholder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorInputText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorInputValidBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorInputValidHoverBorder = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorLinkDangerActive = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorLinkDangerBase = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorLinkDangerDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorLinkDangerHover = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1) + public static let colorLinkDangerVisited = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorLinkDarkActive = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorLinkDarkBase = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorLinkDarkDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorLinkDarkHover = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorLinkDarkVisited = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorLinkLightActive = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorLinkLightBase = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorLinkLightDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorLinkLightHover = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1) + public static let colorLinkLightVisited = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorLinkPrimary02Active = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1) + public static let colorLinkPrimary02Base = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1) + public static let colorLinkPrimary02Disabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorLinkPrimary02Hover = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1) + public static let colorLinkPrimary02Visited = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1) + public static let colorLinkPrimaryActive = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorLinkPrimaryBase = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorLinkPrimaryDisabled = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorLinkPrimaryHover = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorLinkPrimaryVisited = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorListboxBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorListboxBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorListboxDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorListboxTileBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorListboxTileHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorListboxTileShadow = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorNotificationDangerBackground = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1) + public static let colorNotificationDangerBorder = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1) + public static let colorNotificationDangerIcon = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorNotificationFont = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorNotificationInformationBackground = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1) + public static let colorNotificationInformationBorder = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorNotificationInformationIcon = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1) + public static let colorNotificationSuccessBackground = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorNotificationSuccessBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorNotificationSuccessIcon = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorNotificationWarningBackground = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1) + public static let colorNotificationWarningBorder = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1) + public static let colorNotificationWarningIcon = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1) + public static let colorOptionButtonCheckedLabelBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorOptionButtonCheckedLabelShadow = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorOptionButtonDisabledLabelBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorOptionButtonHoverLabelShadow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorOptionButtonLabelShadow = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorOptionCardCheckedLabelBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorOptionCardCheckedLabelShadow = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorOptionCardDisabledContent = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorOptionCardDisabledLabel = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorOptionCardHoverLabelShadow = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorOptionCardLabelShadow = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorOverlayBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorOverlayLoaderBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorPasswordInputButtonHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorPhoneNumberButtonBorder = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorPhoneNumberItemBorder = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorPhoneNumberItemFocusBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorPhoneNumberListBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorPrimary01100 = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorPrimary01200 = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorPrimary01300 = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1) + public static let colorPrimary01400 = UIColor(red: 0.471, green: 0.745, blue: 0.125, alpha: 1) + public static let colorPrimary01500 = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorPrimary01600 = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorPrimary01700 = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorPrimary01800 = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorPrimary01900 = UIColor(red: 0.008, green: 0.212, blue: 0.094, alpha: 1) + public static let colorPrimary02100 = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1) + public static let colorPrimary02200 = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1) + public static let colorPrimary02300 = UIColor(red: 0.702, green: 0.718, blue: 0.757, alpha: 1) + public static let colorPrimary02400 = UIColor(red: 0.561, green: 0.580, blue: 0.639, alpha: 1) + public static let colorPrimary02500 = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1) + public static let colorPrimary02600 = UIColor(red: 0.286, green: 0.310, blue: 0.376, alpha: 1) + public static let colorPrimary02700 = UIColor(red: 0.204, green: 0.231, blue: 0.298, alpha: 1) + public static let colorPrimary02800 = UIColor(red: 0.141, green: 0.161, blue: 0.220, alpha: 1) + public static let colorPrimary02900 = UIColor(red: 0.090, green: 0.106, blue: 0.149, alpha: 1) + public static let colorProgressBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorProgressIndicator = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorProgressPercentageDefault = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorProgressPercentageHalf = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorSecondaryBlue100 = UIColor(red: 0.855, green: 0.937, blue: 0.969, alpha: 1) + public static let colorSecondaryBlue200 = UIColor(red: 0.655, green: 0.851, blue: 0.929, alpha: 1) + public static let colorSecondaryBlue300 = UIColor(red: 0.451, green: 0.765, blue: 0.886, alpha: 1) + public static let colorSecondaryBlue400 = UIColor(red: 0.247, green: 0.675, blue: 0.843, alpha: 1) + public static let colorSecondaryBlue500 = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorSecondaryBlue600 = UIColor(red: 0.000, green: 0.482, blue: 0.706, alpha: 1) + public static let colorSecondaryBlue700 = UIColor(red: 0.000, green: 0.361, blue: 0.569, alpha: 1) + public static let colorSecondaryBlue800 = UIColor(red: 0.000, green: 0.227, blue: 0.361, alpha: 1) + public static let colorSecondaryBlue900 = UIColor(red: 0.000, green: 0.165, blue: 0.255, alpha: 1) + public static let colorSecondaryGreen100 = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorSecondaryGreen200 = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorSecondaryGreen300 = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1) + public static let colorSecondaryGreen400 = UIColor(red: 0.471, green: 0.745, blue: 0.125, alpha: 1) + public static let colorSecondaryGreen500 = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorSecondaryGreen600 = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorSecondaryGreen700 = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorSecondaryGreen800 = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorSecondaryGreen900 = UIColor(red: 0.008, green: 0.212, blue: 0.094, alpha: 1) + public static let colorSecondaryOrange100 = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1) + public static let colorSecondaryOrange200 = UIColor(red: 0.973, green: 0.824, blue: 0.702, alpha: 1) + public static let colorSecondaryOrange300 = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1) + public static let colorSecondaryOrange400 = UIColor(red: 0.937, green: 0.576, blue: 0.290, alpha: 1) + public static let colorSecondaryOrange500 = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1) + public static let colorSecondaryOrange600 = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1) + public static let colorSecondaryOrange700 = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1) + public static let colorSecondaryOrange800 = UIColor(red: 0.325, green: 0.106, blue: 0.000, alpha: 1) + public static let colorSecondaryOrange900 = UIColor(red: 0.212, green: 0.055, blue: 0.000, alpha: 1) + public static let colorSecondaryPurple100 = UIColor(red: 0.937, green: 0.922, blue: 0.996, alpha: 1) + public static let colorSecondaryPurple200 = UIColor(red: 0.780, green: 0.690, blue: 0.980, alpha: 1) + public static let colorSecondaryPurple300 = UIColor(red: 0.647, green: 0.459, blue: 0.953, alpha: 1) + public static let colorSecondaryPurple400 = UIColor(red: 0.533, green: 0.231, blue: 0.914, alpha: 1) + public static let colorSecondaryPurple500 = UIColor(red: 0.439, green: 0.000, blue: 0.867, alpha: 1) + public static let colorSecondaryPurple600 = UIColor(red: 0.345, green: 0.012, blue: 0.702, alpha: 1) + public static let colorSecondaryPurple700 = UIColor(red: 0.259, green: 0.020, blue: 0.541, alpha: 1) + public static let colorSecondaryPurple800 = UIColor(red: 0.180, green: 0.024, blue: 0.388, alpha: 1) + public static let colorSecondaryPurple900 = UIColor(red: 0.110, green: 0.020, blue: 0.239, alpha: 1) + public static let colorSecondaryRed100 = UIColor(red: 0.992, green: 0.918, blue: 0.918, alpha: 1) + public static let colorSecondaryRed200 = UIColor(red: 0.973, green: 0.737, blue: 0.733, alpha: 1) + public static let colorSecondaryRed300 = UIColor(red: 0.953, green: 0.553, blue: 0.549, alpha: 1) + public static let colorSecondaryRed400 = UIColor(red: 0.937, green: 0.373, blue: 0.361, alpha: 1) + public static let colorSecondaryRed500 = UIColor(red: 0.918, green: 0.188, blue: 0.176, alpha: 1) + public static let colorSecondaryRed600 = UIColor(red: 0.776, green: 0.067, blue: 0.071, alpha: 1) + public static let colorSecondaryRed700 = UIColor(red: 0.549, green: 0.000, blue: 0.012, alpha: 1) + public static let colorSecondaryRed800 = UIColor(red: 0.325, green: 0.000, blue: 0.000, alpha: 1) + public static let colorSecondaryRed900 = UIColor(red: 0.176, green: 0.000, blue: 0.000, alpha: 1) + public static let colorSecondaryYellow100 = UIColor(red: 1.000, green: 0.973, blue: 0.886, alpha: 1) + public static let colorSecondaryYellow200 = UIColor(red: 1.000, green: 0.922, blue: 0.686, alpha: 1) + public static let colorSecondaryYellow300 = UIColor(red: 0.996, green: 0.878, blue: 0.490, alpha: 1) + public static let colorSecondaryYellow400 = UIColor(red: 0.988, green: 0.839, blue: 0.298, alpha: 1) + public static let colorSecondaryYellow500 = UIColor(red: 0.973, green: 0.800, blue: 0.110, alpha: 1) + public static let colorSecondaryYellow600 = UIColor(red: 0.788, green: 0.635, blue: 0.106, alpha: 1) + public static let colorSecondaryYellow700 = UIColor(red: 0.612, green: 0.482, blue: 0.094, alpha: 1) + public static let colorSecondaryYellow800 = UIColor(red: 0.439, green: 0.337, blue: 0.075, alpha: 1) + public static let colorSecondaryYellow900 = UIColor(red: 0.275, green: 0.208, blue: 0.051, alpha: 1) + public static let colorSidebarBackground = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1) + public static let colorSidebarDividerBackground = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorSidebarFeatureBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1) + public static let colorSidebarFeatureDisabledBackground = UIColor(red: 0.416, green: 0.439, blue: 0.506, alpha: 1) + public static let colorSidebarFeatureHoverBackground = UIColor(red: 0.702, green: 0.718, blue: 0.757, alpha: 1) + public static let colorSidebarFeatureSelectedBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1) + public static let colorSidebarIcon = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorSidebarScrollBackground = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorSidebarScrollColor = UIColor(red: 0.561, green: 0.580, blue: 0.639, alpha: 1) + public static let colorSidebarTextBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorSidebarTextColor = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorSidebarUserBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1) + public static let colorStarEmpty = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorStarFocus = UIColor(red: 0.043, green: 0.588, blue: 0.800, alpha: 1) + public static let colorStarFull = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1) + public static let colorStarHover = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1) + public static let colorStepperIcon = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorStepperIndicatorBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorStepperIndicatorBorder = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1) + public static let colorStepperIndicatorCurrentBackground = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorStepperIndicatorCurrentBorder = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorStepperItemBackground = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1) + public static let colorStepperItemCurrentBackground = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorStepperLinkHoverText = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorStepperTitle = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorSuccess100 = UIColor(red: 0.922, green: 0.961, blue: 0.871, alpha: 1) + public static let colorSuccess200 = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorSuccess300 = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1) + public static let colorSuccess400 = UIColor(red: 0.471, green: 0.745, blue: 0.125, alpha: 1) + public static let colorSuccess500 = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorSuccess600 = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorSuccess700 = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorSuccess800 = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorSuccess900 = UIColor(red: 0.008, green: 0.212, blue: 0.094, alpha: 1) + public static let colorTabsActiveBackground = UIColor(red: 0.812, green: 0.824, blue: 0.847, alpha: 1) + public static let colorTabsActiveDisabled = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorTabsActiveText = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorTabsBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTabsDefault = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorTabsDisabledBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorTabsElementBackground = UIColor(red: 0.933, green: 0.937, blue: 0.945, alpha: 1) + public static let colorTabsHover = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorTabsSelectedBorder = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorTabsSelectedText = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorTabsShadow = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorTagLinkDarkActiveBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1) + public static let colorTagLinkDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagLinkDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagLinkDarkHoverBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorTagLinkDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagLinkLightActiveBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorTagLinkLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagLinkLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorTagLinkLightHoverBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorTagLinkLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagRemovableDarkActiveBackground = UIColor(red: 0.600, green: 0.600, blue: 0.600, alpha: 1) + public static let colorTagRemovableDarkBackground = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorTagRemovableDarkHoverBackground = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorTagRemovableDarkIcon = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagRemovableDarkText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagRemovableLightActiveBackground = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorTagRemovableLightBackground = UIColor(red: 0.200, green: 0.200, blue: 0.200, alpha: 1) + public static let colorTagRemovableLightHoverBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1) + public static let colorTagRemovableLightIcon = UIColor(red: 0.800, green: 0.800, blue: 0.800, alpha: 1) + public static let colorTagRemovableLightText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagSelectableDarkActiveBackground = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorTagSelectableDarkActiveBorder = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorTagSelectableDarkActiveText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagSelectableDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagSelectableDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagSelectableDarkDisabledBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1) + public static let colorTagSelectableDarkDisabledText = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorTagSelectableDarkHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorTagSelectableDarkSelectedBackground = UIColor(red: 0.471, green: 0.745, blue: 0.125, alpha: 1) + public static let colorTagSelectableDarkSelectedBorder = UIColor(red: 0.471, green: 0.745, blue: 0.125, alpha: 1) + public static let colorTagSelectableDarkSelectedHoverBackground = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1) + public static let colorTagSelectableDarkSelectedText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagSelectableDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagSelectableLightActiveBackground = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorTagSelectableLightActiveBorder = UIColor(red: 0.012, green: 0.314, blue: 0.063, alpha: 1) + public static let colorTagSelectableLightActiveText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagSelectableLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagSelectableLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorTagSelectableLightDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorTagSelectableLightDisabledText = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorTagSelectableLightHoverBackground = UIColor(red: 0.620, green: 0.816, blue: 0.373, alpha: 1) + public static let colorTagSelectableLightSelectedBackground = UIColor(red: 0.094, green: 0.533, blue: 0.012, alpha: 1) + public static let colorTagSelectableLightSelectedHoverBackground = UIColor(red: 0.000, green: 0.412, blue: 0.008, alpha: 1) + public static let colorTagSelectableLightSelectedText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagSelectableLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagTextDarkBackground = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorTagTextDarkBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagTextDarkText = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagTextLightBackground = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTagTextLightBorder = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorTagTextLightText = UIColor(red: 0.098, green: 0.098, blue: 0.098, alpha: 1) + public static let colorToggleDisabledBackground = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorToggleDisabledCheckedBackground = UIColor(red: 0.773, green: 0.890, blue: 0.620, alpha: 1) + public static let colorToggleDisabledCheckedCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorToggleDisabledCircle = UIColor(red: 0.702, green: 0.702, blue: 0.702, alpha: 1) + public static let colorToggleDisabledLabel = UIColor(red: 0.502, green: 0.502, blue: 0.502, alpha: 1) + public static let colorToggleHoverCircle = UIColor(red: 0.902, green: 0.902, blue: 0.902, alpha: 1) + public static let colorToggleLabel = UIColor(red: 0.000, green: 0.000, blue: 0.000, alpha: 1) + public static let colorToggleOffBackground = UIColor(red: 0.400, green: 0.400, blue: 0.400, alpha: 1) + public static let colorToggleOffCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorToggleOnBackground = UIColor(red: 0.275, green: 0.651, blue: 0.063, alpha: 1) + public static let colorToggleOnCircle = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorTooltipBackground = UIColor(red: 0.302, green: 0.302, blue: 0.302, alpha: 1) + public static let colorTooltipBorder = UIColor(red: 1.000, green: 1.000, blue: 1.000, alpha: 1) + public static let colorWarning100 = UIColor(red: 0.992, green: 0.945, blue: 0.910, alpha: 1) + public static let colorWarning200 = UIColor(red: 0.973, green: 0.824, blue: 0.702, alpha: 1) + public static let colorWarning300 = UIColor(red: 0.957, green: 0.698, blue: 0.494, alpha: 1) + public static let colorWarning400 = UIColor(red: 0.937, green: 0.576, blue: 0.290, alpha: 1) + public static let colorWarning500 = UIColor(red: 0.918, green: 0.451, blue: 0.082, alpha: 1) + public static let colorWarning600 = UIColor(red: 0.776, green: 0.322, blue: 0.000, alpha: 1) + public static let colorWarning700 = UIColor(red: 0.549, green: 0.208, blue: 0.000, alpha: 1) + public static let colorWarning800 = UIColor(red: 0.325, green: 0.106, blue: 0.000, alpha: 1) + public static let colorWarning900 = UIColor(red: 0.212, green: 0.055, blue: 0.000, alpha: 1) +} diff --git a/packages/tokens/build/ios/StyleDictionarySize.h b/packages/tokens/build/ios/StyleDictionarySize.h new file mode 100644 index 000000000..962590286 --- /dev/null +++ b/packages/tokens/build/ios/StyleDictionarySize.h @@ -0,0 +1,69 @@ + +// StyleDictionarySize.h +// + +#import + + +extern float const SizeFont10; +extern float const SizeFont11; +extern float const SizeFont12; +extern float const SizeFont01; +extern float const SizeFont02; +extern float const SizeFont03; +extern float const SizeFont04; +extern float const SizeFont05; +extern float const SizeFont06; +extern float const SizeFont07; +extern float const SizeFont08; +extern float const SizeFont09; +extern float const SizeLine10Xs; +extern float const SizeLine10S; +extern float const SizeLine10M; +extern float const SizeLine10L; +extern float const SizeLine11Xs; +extern float const SizeLine11S; +extern float const SizeLine11M; +extern float const SizeLine11L; +extern float const SizeLine12Xs; +extern float const SizeLine12S; +extern float const SizeLine12M; +extern float const SizeLine12L; +extern float const SizeLine01Xs; +extern float const SizeLine01S; +extern float const SizeLine01M; +extern float const SizeLine01L; +extern float const SizeLine02Xs; +extern float const SizeLine02S; +extern float const SizeLine02M; +extern float const SizeLine02L; +extern float const SizeLine03Xs; +extern float const SizeLine03S; +extern float const SizeLine03M; +extern float const SizeLine03L; +extern float const SizeLine04Xs; +extern float const SizeLine04S; +extern float const SizeLine04M; +extern float const SizeLine04L; +extern float const SizeLine05Xs; +extern float const SizeLine05S; +extern float const SizeLine05M; +extern float const SizeLine05L; +extern float const SizeLine06Xs; +extern float const SizeLine06S; +extern float const SizeLine06M; +extern float const SizeLine06L; +extern float const SizeLine07Xs; +extern float const SizeLine07S; +extern float const SizeLine07M; +extern float const SizeLine07L; +extern float const SizeLine08Xs; +extern float const SizeLine08S; +extern float const SizeLine08M; +extern float const SizeLine08L; +extern float const SizeLine09Xs; +extern float const SizeLine09S; +extern float const SizeLine09M; +extern float const SizeLine09L; +extern float const SizeGutterScreenS; +extern float const SizeGutterScreenM; diff --git a/packages/tokens/build/ios/StyleDictionarySize.m b/packages/tokens/build/ios/StyleDictionarySize.m new file mode 100644 index 000000000..13139d867 --- /dev/null +++ b/packages/tokens/build/ios/StyleDictionarySize.m @@ -0,0 +1,70 @@ + +// +// StyleDictionarySize.m +// + +#import "StyleDictionarySize.h" + + +float const SizeFont10 = 41.00f; +float const SizeFont11 = 49.00f; +float const SizeFont12 = 59.00f; +float const SizeFont01 = 10.90f; +float const SizeFont02 = 12.00f; +float const SizeFont03 = 13.00f; +float const SizeFont04 = 14.00f; +float const SizeFont05 = 16.00f; +float const SizeFont06 = 18.00f; +float const SizeFont07 = 23.00f; +float const SizeFont08 = 28.00f; +float const SizeFont09 = 34.00f; +float const SizeLine10Xs = 40.00f; +float const SizeLine10S = 48.00f; +float const SizeLine10M = 56.00f; +float const SizeLine10L = 60.00f; +float const SizeLine11Xs = 48.00f; +float const SizeLine11S = 56.00f; +float const SizeLine11M = 68.00f; +float const SizeLine11L = 72.00f; +float const SizeLine12Xs = 60.00f; +float const SizeLine12S = 68.00f; +float const SizeLine12M = 80.00f; +float const SizeLine12L = 88.00f; +float const SizeLine01Xs = 12.00f; +float const SizeLine01S = 12.00f; +float const SizeLine01M = 14.00f; +float const SizeLine01L = 16.00f; +float const SizeLine02Xs = 12.00f; +float const SizeLine02S = 14.00f; +float const SizeLine02M = 16.00f; +float const SizeLine02L = 18.00f; +float const SizeLine03Xs = 14.00f; +float const SizeLine03S = 16.00f; +float const SizeLine03M = 18.00f; +float const SizeLine03L = 20.00f; +float const SizeLine04Xs = 14.00f; +float const SizeLine04S = 16.00f; +float const SizeLine04M = 18.00f; +float const SizeLine04L = 22.00f; +float const SizeLine05Xs = 16.00f; +float const SizeLine05S = 18.00f; +float const SizeLine05M = 22.00f; +float const SizeLine05L = 24.00f; +float const SizeLine06Xs = 18.00f; +float const SizeLine06S = 20.00f; +float const SizeLine06M = 24.00f; +float const SizeLine06L = 28.00f; +float const SizeLine07Xs = 24.00f; +float const SizeLine07S = 28.00f; +float const SizeLine07M = 32.00f; +float const SizeLine07L = 36.00f; +float const SizeLine08Xs = 28.00f; +float const SizeLine08S = 32.00f; +float const SizeLine08M = 36.00f; +float const SizeLine08L = 44.00f; +float const SizeLine09Xs = 36.00f; +float const SizeLine09S = 40.00f; +float const SizeLine09M = 44.00f; +float const SizeLine09L = 52.00f; +float const SizeGutterScreenS = 16.00f; +float const SizeGutterScreenM = 32.00f; diff --git a/packages/tokens/build/ios/StyleDictionarySize.swift b/packages/tokens/build/ios/StyleDictionarySize.swift new file mode 100644 index 000000000..b66073ee4 --- /dev/null +++ b/packages/tokens/build/ios/StyleDictionarySize.swift @@ -0,0 +1,71 @@ + +// +// StyleDictionarySize.swift +// + +import UIKit + +public class StyleDictionarySize { + public static let sizeFont01 = CGFloat(10.90) /* 11px */ + public static let sizeFont02 = CGFloat(12.00) /* 12px */ + public static let sizeFont03 = CGFloat(13.00) /* 13px */ + public static let sizeFont04 = CGFloat(14.00) /* 14px */ + public static let sizeFont05 = CGFloat(16.00) /* 16px */ + public static let sizeFont06 = CGFloat(18.00) /* 18px */ + public static let sizeFont07 = CGFloat(23.00) /* 23px */ + public static let sizeFont08 = CGFloat(28.00) /* 28px */ + public static let sizeFont09 = CGFloat(34.00) /* 34px */ + public static let sizeFont10 = CGFloat(41.00) /* 41px */ + public static let sizeFont11 = CGFloat(49.00) /* 49px */ + public static let sizeFont12 = CGFloat(59.00) /* 59px */ + public static let sizeGutterScreenM = CGFloat(32.00) + public static let sizeGutterScreenS = CGFloat(16.00) + public static let sizeLine01L = CGFloat(16.00) /* 16px */ + public static let sizeLine01M = CGFloat(14.00) /* 14px */ + public static let sizeLine01S = CGFloat(12.00) /* 12px */ + public static let sizeLine01Xs = CGFloat(12.00) /* 12px */ + public static let sizeLine02L = CGFloat(18.00) /* 18px */ + public static let sizeLine02M = CGFloat(16.00) /* 16px */ + public static let sizeLine02S = CGFloat(14.00) /* 14px */ + public static let sizeLine02Xs = CGFloat(12.00) /* 12px */ + public static let sizeLine03L = CGFloat(20.00) /* 20px */ + public static let sizeLine03M = CGFloat(18.00) /* 18px */ + public static let sizeLine03S = CGFloat(16.00) /* 16px */ + public static let sizeLine03Xs = CGFloat(14.00) /* 14px */ + public static let sizeLine04L = CGFloat(22.00) /* 22px */ + public static let sizeLine04M = CGFloat(18.00) /* 18px */ + public static let sizeLine04S = CGFloat(16.00) /* 16px */ + public static let sizeLine04Xs = CGFloat(14.00) /* 14px */ + public static let sizeLine05L = CGFloat(24.00) /* 24px */ + public static let sizeLine05M = CGFloat(22.00) /* 22px */ + public static let sizeLine05S = CGFloat(18.00) /* 18px */ + public static let sizeLine05Xs = CGFloat(16.00) /* 16px */ + public static let sizeLine06L = CGFloat(28.00) /* 28px */ + public static let sizeLine06M = CGFloat(24.00) /* 24px */ + public static let sizeLine06S = CGFloat(20.00) /* 20px */ + public static let sizeLine06Xs = CGFloat(18.00) /* 18px */ + public static let sizeLine07L = CGFloat(36.00) /* 36px */ + public static let sizeLine07M = CGFloat(32.00) /* 32px */ + public static let sizeLine07S = CGFloat(28.00) /* 28px */ + public static let sizeLine07Xs = CGFloat(24.00) /* 24px */ + public static let sizeLine08L = CGFloat(44.00) /* 44px */ + public static let sizeLine08M = CGFloat(36.00) /* 36px */ + public static let sizeLine08S = CGFloat(32.00) /* 32px */ + public static let sizeLine08Xs = CGFloat(28.00) /* 28px */ + public static let sizeLine09L = CGFloat(52.00) /* 52px */ + public static let sizeLine09M = CGFloat(44.00) /* 44px */ + public static let sizeLine09S = CGFloat(40.00) /* 40px */ + public static let sizeLine09Xs = CGFloat(36.00) /* 36px */ + public static let sizeLine10L = CGFloat(60.00) /* 60px */ + public static let sizeLine10M = CGFloat(56.00) /* 56px */ + public static let sizeLine10S = CGFloat(48.00) /* 48px */ + public static let sizeLine10Xs = CGFloat(40.00) /* 40px */ + public static let sizeLine11L = CGFloat(72.00) /* 72px */ + public static let sizeLine11M = CGFloat(68.00) /* 68px */ + public static let sizeLine11S = CGFloat(56.00) /* 56px */ + public static let sizeLine11Xs = CGFloat(48.00) /* 48px */ + public static let sizeLine12L = CGFloat(88.00) /* 88px */ + public static let sizeLine12M = CGFloat(80.00) /* 80px */ + public static let sizeLine12S = CGFloat(68.00) /* 68px */ + public static let sizeLine12Xs = CGFloat(60.00) /* 60px */ +} diff --git a/packages/tokens/build/lm/js/tokens.js b/packages/tokens/build/js/tokens.js similarity index 99% rename from packages/tokens/build/lm/js/tokens.js rename to packages/tokens/build/js/tokens.js index 4705f3265..664782f45 100644 --- a/packages/tokens/build/lm/js/tokens.js +++ b/packages/tokens/build/js/tokens.js @@ -468,10 +468,6 @@ export const ColorToggleDisabledCheckedBackground = "#c5e39e"; export const ColorToggleDisabledCheckedCircle = "#ffffff"; export const ColorTooltipBackground = "#4d4d4d"; export const ColorTooltipBorder = "#ffffff"; -export const FontFamily = "LeroyMerlin"; -export const FontWeightLight = 300; -export const FontWeightRegular = 400; -export const FontWeightSemiBold = 600; export const Preset = "lm"; export const RadiusS = 2; export const RadiusM = 4; diff --git a/packages/tokens/build/lm/js/tokensObject.js b/packages/tokens/build/js/tokensObject.js similarity index 99% rename from packages/tokens/build/lm/js/tokensObject.js rename to packages/tokens/build/js/tokensObject.js index cb773d841..5b3ba154b 100644 --- a/packages/tokens/build/lm/js/tokensObject.js +++ b/packages/tokens/build/js/tokensObject.js @@ -4363,7 +4363,7 @@ module.exports = { "filters": { "border": { "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.300.value}" @@ -4386,7 +4386,7 @@ module.exports = { "container": { "background": { "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.100.value}" @@ -4409,7 +4409,7 @@ module.exports = { "thead": { "font": { "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.900.value}" @@ -4432,7 +4432,7 @@ module.exports = { "sort-arrow": { "default": { "value": "#cccccc", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.200.value}" @@ -4453,7 +4453,7 @@ module.exports = { }, "active": { "value": "#333333", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.800.value}" @@ -4476,7 +4476,7 @@ module.exports = { "cell": { "font": { "value": "#191919", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.900.value}" @@ -4498,7 +4498,7 @@ module.exports = { "background": { "hover": { "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.100.value}" @@ -4521,7 +4521,7 @@ module.exports = { }, "selected": { "value": "#ebf5de", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.primary-01.100.value}" @@ -4547,7 +4547,7 @@ module.exports = { "subtable": { "background": { "value": "#e6e6e6", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.100.value}" @@ -4568,7 +4568,7 @@ module.exports = { }, "border": { "value": "#b3b3b3", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.300.value}" @@ -4589,7 +4589,7 @@ module.exports = { }, "font": { "value": "#000000", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.grey.999.value}" @@ -4611,7 +4611,7 @@ module.exports = { }, "icon": { "value": "#46a610", - "filePath": "packages/tokens/src/tokens/leroymerlin/color/datatable.json", + "filePath": "packages/tokens/properties/color/datatable.json", "isSource": true, "original": { "value": "{color.primary-01.500.value}" @@ -10196,84 +10196,6 @@ module.exports = { } } }, - "font": { - "family": { - "value": "LeroyMerlin", - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": "LeroyMerlin" - }, - "name": "FontFamily", - "attributes": { - "category": "font", - "type": "family" - }, - "path": [ - "font", - "family" - ] - }, - "weight": { - "light": { - "value": 300, - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": 300 - }, - "name": "FontWeightLight", - "attributes": { - "category": "font", - "type": "weight", - "item": "light" - }, - "path": [ - "font", - "weight", - "light" - ] - }, - "regular": { - "value": 400, - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": 400 - }, - "name": "FontWeightRegular", - "attributes": { - "category": "font", - "type": "weight", - "item": "regular" - }, - "path": [ - "font", - "weight", - "regular" - ] - }, - "semi-bold": { - "value": 600, - "filePath": "packages/tokens/src/tokens/leroymerlin/font.json", - "isSource": true, - "original": { - "value": 600 - }, - "name": "FontWeightSemiBold", - "attributes": { - "category": "font", - "type": "weight", - "item": "semi-bold" - }, - "path": [ - "font", - "weight", - "semi-bold" - ] - } - } - }, "preset": { "value": "lm", "filePath": "packages/tokens/properties/preset.json", diff --git a/packages/tokens/build/lm/scss/_tokens.scss b/packages/tokens/build/scss/_tokens.scss similarity index 99% rename from packages/tokens/build/lm/scss/_tokens.scss rename to packages/tokens/build/scss/_tokens.scss index a793fd0e8..9519c7fa4 100644 --- a/packages/tokens/build/lm/scss/_tokens.scss +++ b/packages/tokens/build/scss/_tokens.scss @@ -469,10 +469,6 @@ $color-toggle-disabled-checked-background: #c5e39e !default; $color-toggle-disabled-checked-circle: #ffffff !default; $color-tooltip-background: #4d4d4d !default; $color-tooltip-border: #ffffff !default; -$font-family: LeroyMerlin !default; -$font-weight-light: 300 !default; -$font-weight-regular: 400 !default; -$font-weight-semi-bold: 600 !default; $preset: lm !default; $radius-s: 2 !default; $radius-m: 4 !default; @@ -1458,14 +1454,6 @@ $tokens: ( 'border': $color-tooltip-border ) ), - 'font': ( - 'family': $font-family, - 'weight': ( - 'light': $font-weight-light, - 'regular': $font-weight-regular, - 'semi-bold': $font-weight-semi-bold - ) - ), 'preset': $preset, 'radius': ( 's': $radius-s, diff --git a/packages/tokens/buildAdeo/js/tokens.js b/packages/tokens/buildAdeo/js/tokens.js new file mode 100644 index 000000000..a0614de4d --- /dev/null +++ b/packages/tokens/buildAdeo/js/tokens.js @@ -0,0 +1,488 @@ +export const BorderS = 1 +export const BorderM = 2 +export const BorderL = 3 +export const ColorBadgeInfoBackground = '#daeff7' +export const ColorBadgeInfoBorder = '#0b96cc' +export const ColorBadgeInfoText = '#005c91' +export const ColorBadgeSuccessBackground = '#ebf5de' +export const ColorBadgeSuccessBorder = '#46a610' +export const ColorBadgeSuccessText = '#006902' +export const ColorBadgeWarningBackground = '#fdf1e8' +export const ColorBadgeWarningBorder = '#ea7315' +export const ColorBadgeWarningText = '#8c3500' +export const ColorBadgeDangerBackground = '#fdeaea' +export const ColorBadgeDangerBorder = '#ea302d' +export const ColorBadgeDangerText = '#8c0003' +export const ColorBadgeNeutralBackground = '#e6e6e6' +export const ColorBadgeNeutralBorder = '#808080' +export const ColorBadgeNeutralText = '#4d4d4d' +export const ColorPrimary01100 = '#d9f0f3' +export const ColorPrimary01200 = '#91d5db' +export const ColorPrimary01300 = '#48bac4' +export const ColorPrimary01400 = '#009eac' +export const ColorPrimary01500 = '#00919f' +export const ColorPrimary01600 = '#007f8c' +export const ColorPrimary01700 = '#006974' +export const ColorPrimary01800 = '#004e57' +export const ColorPrimary01900 = '#002e33' +export const ColorPrimary02100 = '#cfd2d8' +export const ColorPrimary02200 = '#cfd2d8' +export const ColorPrimary02300 = '#b3b7c1' +export const ColorPrimary02400 = '#8f94a3' +export const ColorPrimary02500 = '#6a7081' +export const ColorPrimary02600 = '#494f60' +export const ColorPrimary02700 = '#343b4c' +export const ColorPrimary02800 = '#242938' +export const ColorPrimary02900 = '#171b26' +export const ColorGrey100 = '#e6e6e6' +export const ColorGrey200 = '#cccccc' +export const ColorGrey300 = '#b3b3b3' +export const ColorGrey400 = '#999999' +export const ColorGrey500 = '#808080' +export const ColorGrey600 = '#666666' +export const ColorGrey700 = '#4d4d4d' +export const ColorGrey800 = '#333333' +export const ColorGrey900 = '#191919' +export const ColorGrey999 = '#000000' +export const ColorGrey000 = '#ffffff' +export const ColorSecondaryBlue100 = '#eaedef' +export const ColorSecondaryBlue200 = '#cdd4d8' +export const ColorSecondaryBlue300 = '#b0bbc0' +export const ColorSecondaryBlue400 = '#92a2a9' +export const ColorSecondaryBlue500 = '#758992' +export const ColorSecondaryBlue600 = '#5b737d' +export const ColorSecondaryBlue700 = '#405d68' +export const ColorSecondaryBlue800 = '#264653' +export const ColorSecondaryBlue900 = '#082435' +export const ColorSecondaryGreen100 = '#d9f0f3' +export const ColorSecondaryGreen200 = '#91d5db' +export const ColorSecondaryGreen300 = '#48bac4' +export const ColorSecondaryGreen400 = '#009eac' +export const ColorSecondaryGreen500 = '#00919f' +export const ColorSecondaryGreen600 = '#007f8c' +export const ColorSecondaryGreen700 = '#006974' +export const ColorSecondaryGreen800 = '#004e57' +export const ColorSecondaryGreen900 = '#002e33' +export const ColorSecondaryPurple100 = '#e7e7f0' +export const ColorSecondaryPurple200 = '#c5c5dc' +export const ColorSecondaryPurple300 = '#a4a3c7' +export const ColorSecondaryPurple400 = '#8281b2' +export const ColorSecondaryPurple500 = '#605f9d' +export const ColorSecondaryPurple600 = '#4b4a8c' +export const ColorSecondaryPurple700 = '#393879' +export const ColorSecondaryPurple800 = '#282863' +export const ColorSecondaryPurple900 = '#1a1a4b' +export const ColorSecondaryRed100 = '#feedee' +export const ColorSecondaryRed200 = '#fab9bc' +export const ColorSecondaryRed300 = '#f38789' +export const ColorSecondaryRed400 = '#ea5d58' +export const ColorSecondaryRed500 = '#df382b' +export const ColorSecondaryRed600 = '#b42a27' +export const ColorSecondaryRed700 = '#8b2226' +export const ColorSecondaryRed800 = '#641b21' +export const ColorSecondaryRed900 = '#3e1219' +export const ColorSecondaryOrange100 = '#fff5eb' +export const ColorSecondaryOrange200 = '#ffdab2' +export const ColorSecondaryOrange300 = '#ffc17d' +export const ColorSecondaryOrange400 = '#ffab4b' +export const ColorSecondaryOrange500 = '#fc961e' +export const ColorSecondaryOrange600 = '#c86f21' +export const ColorSecondaryOrange700 = '#974f20' +export const ColorSecondaryOrange800 = '#6a351c' +export const ColorSecondaryOrange900 = '#401f15' +export const ColorSecondaryYellow100 = '#fff8e2' +export const ColorSecondaryYellow200 = '#ffebaf' +export const ColorSecondaryYellow300 = '#fee07d' +export const ColorSecondaryYellow400 = '#fcd64c' +export const ColorSecondaryYellow500 = '#f8cc1c' +export const ColorSecondaryYellow600 = '#c9a21b' +export const ColorSecondaryYellow700 = '#9c7b18' +export const ColorSecondaryYellow800 = '#705613' +export const ColorSecondaryYellow900 = '#46350d' +export const ColorDanger100 = '#fdeaea' +export const ColorDanger200 = '#f8bcbb' +export const ColorDanger300 = '#f38d8c' +export const ColorDanger400 = '#ef5f5c' +export const ColorDanger500 = '#ea302d' +export const ColorDanger600 = '#c61112' +export const ColorDanger700 = '#8c0003' +export const ColorDanger800 = '#530000' +export const ColorDanger900 = '#2d0000' +export const ColorInfo100 = '#daeff7' +export const ColorInfo200 = '#a7d9ed' +export const ColorInfo300 = '#73c3e2' +export const ColorInfo400 = '#3facd7' +export const ColorInfo500 = '#0b96cc' +export const ColorInfo600 = '#007bb4' +export const ColorInfo700 = '#005c91' +export const ColorInfo800 = '#003a5c' +export const ColorInfo900 = '#002a41' +export const ColorWarning100 = '#fdf1e8' +export const ColorWarning200 = '#f8d2b3' +export const ColorWarning300 = '#f4b27e' +export const ColorWarning400 = '#ef934a' +export const ColorWarning500 = '#ea7315' +export const ColorWarning600 = '#c65200' +export const ColorWarning700 = '#8c3500' +export const ColorWarning800 = '#531b00' +export const ColorWarning900 = '#360e00' +export const ColorSuccess100 = '#ebf5de' +export const ColorSuccess200 = '#c5e39e' +export const ColorSuccess300 = '#9ed05f' +export const ColorSuccess400 = '#78be20' +export const ColorSuccess500 = '#46a610' +export const ColorSuccess600 = '#188803' +export const ColorSuccess700 = '#006902' +export const ColorSuccess800 = '#035010' +export const ColorSuccess900 = '#023618' +export const ColorButtonSolidBackground = '#007f8c' +export const ColorButtonSolidFont = '#ffffff' +export const ColorButtonSolidFocusBorder = '#006974' +export const ColorButtonSolidDisabledBackground = '#cccccc' +export const ColorButtonSolidDisabledFont = '#666666' +export const ColorButtonSolidActiveBackground = '#006974' +export const ColorButtonSolidHoverBackground = '#006974' +export const ColorButtonSolidHoverFont = '#ffffff' +export const ColorButtonSolidPrimary02Background = '#6a7081' +export const ColorButtonSolidPrimary02Font = '#ffffff' +export const ColorButtonSolidPrimary02FocusBorder = '#171b26' +export const ColorButtonSolidPrimary02DisabledBackground = '#cccccc' +export const ColorButtonSolidPrimary02DisabledFont = '#666666' +export const ColorButtonSolidPrimary02ActiveBackground = '#171b26' +export const ColorButtonSolidPrimary02HoverBackground = '#242938' +export const ColorButtonSolidPrimary02HoverFont = '#ffffff' +export const ColorButtonSolidNeutralBackground = '#333333' +export const ColorButtonSolidNeutralFont = '#ffffff' +export const ColorButtonSolidNeutralFocusBorder = '#191919' +export const ColorButtonSolidNeutralDisabledBackground = '#cccccc' +export const ColorButtonSolidNeutralDisabledFont = '#666666' +export const ColorButtonSolidNeutralActiveBackground = '#333333' +export const ColorButtonSolidNeutralHoverBackground = '#191919' +export const ColorButtonSolidNeutralHoverFont = '#ffffff' +export const ColorButtonSolidDangerBackground = '#b42a27' +export const ColorButtonSolidDangerFont = '#ffffff' +export const ColorButtonSolidDangerFocusBorder = '#8c0003' +export const ColorButtonSolidDangerDisabledBackground = '#cccccc' +export const ColorButtonSolidDangerDisabledFont = '#666666' +export const ColorButtonSolidDangerActiveBackground = '#8c0003' +export const ColorButtonSolidDangerHoverBackground = '#8c0003' +export const ColorButtonSolidDangerHoverFont = '#ffffff' +export const ColorButtonBorderedBackground = '#ffffff' +export const ColorButtonBorderedBorder = '#007f8c' +export const ColorButtonBorderedFont = '#007f8c' +export const ColorButtonBorderedFocusBorder = '#006974' +export const ColorButtonBorderedDisabledBackground = '#cccccc' +export const ColorButtonBorderedDisabledFont = '#666666' +export const ColorButtonBorderedActiveBackground = '#91d5db' +export const ColorButtonBorderedHoverBackground = '#d9f0f3' +export const ColorButtonBorderedPrimary02Background = '#ffffff' +export const ColorButtonBorderedPrimary02Border = '#6a7081' +export const ColorButtonBorderedPrimary02Font = '#6a7081' +export const ColorButtonBorderedPrimary02FocusBorder = '#171b26' +export const ColorButtonBorderedPrimary02DisabledBackground = '#cccccc' +export const ColorButtonBorderedPrimary02DisabledFont = '#666666' +export const ColorButtonBorderedPrimary02ActiveBackground = '#cfd2d8' +export const ColorButtonBorderedPrimary02HoverBackground = '#cfd2d8' +export const ColorButtonBorderedNeutralBackground = '#ffffff' +export const ColorButtonBorderedNeutralBorder = '#333333' +export const ColorButtonBorderedNeutralFont = '#333333' +export const ColorButtonBorderedNeutralFocusBorder = '#191919' +export const ColorButtonBorderedNeutralDisabledBackground = '#cccccc' +export const ColorButtonBorderedNeutralDisabledFont = '#666666' +export const ColorButtonBorderedNeutralActiveBackground = '#cccccc' +export const ColorButtonBorderedNeutralHoverBackground = '#e6e6e6' +export const ColorButtonBorderedDangerBackground = '#ffffff' +export const ColorButtonBorderedDangerBorder = '#b42a27' +export const ColorButtonBorderedDangerFont = '#b42a27' +export const ColorButtonBorderedDangerFocusBorder = '#8b2226' +export const ColorButtonBorderedDangerDisabledBackground = '#cccccc' +export const ColorButtonBorderedDangerDisabledFont = '#666666' +export const ColorButtonBorderedDangerActiveBackground = '#fab9bc' +export const ColorButtonBorderedDangerHoverBackground = '#feedee' +export const ColorDividerLightest = '#ffffff' +export const ColorDividerLight = '#b3b3b3' +export const ColorDividerDefault = '#666666' +export const ColorDividerDark = '#000000' +export const ColorFieldsError = '#c61112' +export const ColorFieldsLabel = '#333333' +export const ColorFieldsRequirement = '#666666' +export const ColorFieldsHelp = '#666666' +export const ColorFileuploaderFont = '#000000' +export const ColorFileuploaderFilesList = '#e6e6e6' +export const ColorFileuploaderFilesDelete = '#cccccc' +export const ColorFileuploaderValid = '#00919f' +export const ColorFileuploaderAlert = '#c61112' +export const ColorFlagSolidBackground = '#007f8c' +export const ColorFlagSolidBorder = '#007f8c' +export const ColorFlagSolidText = '#ffffff' +export const ColorFlagSolidPrimary02Background = '#4b4a8c' +export const ColorFlagSolidPrimary02Border = '#4b4a8c' +export const ColorFlagSolidPrimary02Text = '#ffffff' +export const ColorFlagSolidDarkBackground = '#000000' +export const ColorFlagSolidDarkBorder = '#000000' +export const ColorFlagSolidDarkText = '#ffffff' +export const ColorFlagSolidLightBackground = '#ffffff' +export const ColorFlagSolidLightBorder = '#ffffff' +export const ColorFlagSolidLightText = '#000000' +export const ColorFlagSolidDangerBackground = '#b42a27' +export const ColorFlagSolidDangerBorder = '#b42a27' +export const ColorFlagSolidDangerText = '#ffffff' +export const ColorFlagBorderedBackground = '#ffffff' +export const ColorFlagBorderedBorder = '#007f8c' +export const ColorFlagBorderedText = '#007f8c' +export const ColorFlagBorderedPrimary02Background = '#ffffff' +export const ColorFlagBorderedPrimary02Border = '#4b4a8c' +export const ColorFlagBorderedPrimary02Text = '#4b4a8c' +export const ColorFlagBorderedDarkBackground = '#ffffff' +export const ColorFlagBorderedDarkBorder = '#000000' +export const ColorFlagBorderedDarkText = '#000000' +export const ColorFlagBorderedLightBackground = '#000000' +export const ColorFlagBorderedLightBorder = '#ffffff' +export const ColorFlagBorderedLightText = '#ffffff' +export const ColorFlagBorderedDangerBackground = '#ffffff' +export const ColorFlagBorderedDangerBorder = '#b42a27' +export const ColorFlagBorderedDangerText = '#b42a27' +export const ColorFocusGap = '#ffffff' +export const ColorFocusBorder = '#758992' +export const ColorFontPrimary01 = '#00919f' +export const ColorFontPrimary02 = '#6a7081' +export const ColorFontDarkest = '#000000' +export const ColorFontDarker = '#191919' +export const ColorFontDark = '#333333' +export const ColorFontLight = '#666666' +export const ColorFontLightest = '#ffffff' +export const ColorFontInfo = '#007bb4' +export const ColorFontSuccess = '#188803' +export const ColorFontWarning = '#c65200' +export const ColorFontDanger = '#c61112' +export const ColorInputText = '#191919' +export const ColorInputBorder = '#666666' +export const ColorInputPlaceholder = '#808080' +export const ColorInputBackground = '#ffffff' +export const ColorInputDisabledBorder = '#e6e6e6' +export const ColorInputDisabledBackground = '#e6e6e6' +export const ColorInputDisabledIcon = '#999999' +export const ColorInputHoverBorder = '#191919' +export const ColorInputFocusBorder = '#758992' +export const ColorInputValidBorder = '#46a610' +export const ColorInputValidHoverBorder = '#035010' +export const ColorInputInvalidBorder = '#c61112' +export const ColorInputInvalidHoverBorder = '#530000' +export const ColorInputCheckedBorder = '#00919f' +export const ColorInputCheckedBackground = '#00919f' +export const ColorInputCheckedIcon = '#ffffff' +export const ColorInputCheckedHoverBorder = '#004e57' +export const ColorLinkDarkBase = '#000000' +export const ColorLinkDarkVisited = '#333333' +export const ColorLinkDarkActive = '#333333' +export const ColorLinkDarkDisabled = '#e6e6e6' +export const ColorLinkDarkHover = '#666666' +export const ColorLinkLightBase = '#ffffff' +export const ColorLinkLightVisited = '#cccccc' +export const ColorLinkLightActive = '#cccccc' +export const ColorLinkLightDisabled = '#e6e6e6' +export const ColorLinkLightHover = '#999999' +export const ColorLinkPrimaryBase = '#007f8c' +export const ColorLinkPrimaryVisited = '#006974' +export const ColorLinkPrimaryActive = '#006974' +export const ColorLinkPrimaryDisabled = '#e6e6e6' +export const ColorLinkPrimaryHover = '#002e33' +export const ColorLinkPrimary02Base = '#494f60' +export const ColorLinkPrimary02Visited = '#343b4c' +export const ColorLinkPrimary02Active = '#343b4c' +export const ColorLinkPrimary02Disabled = '#e6e6e6' +export const ColorLinkPrimary02Hover = '#171b26' +export const ColorLinkDangerBase = '#b42a27' +export const ColorLinkDangerVisited = '#8b2226' +export const ColorLinkDangerActive = '#8b2226' +export const ColorLinkDangerDisabled = '#e6e6e6' +export const ColorLinkDangerHover = '#3e1219' +export const ColorNotificationFont = '#000000' +export const ColorNotificationInformationBackground = '#daeff7' +export const ColorNotificationInformationBorder = '#0b96cc' +export const ColorNotificationSuccessBackground = '#ebf5de' +export const ColorNotificationSuccessBorder = '#46a610' +export const ColorNotificationWarningBackground = '#fdf1e8' +export const ColorNotificationWarningBorder = '#ea7315' +export const ColorNotificationDangerBackground = '#fdeaea' +export const ColorNotificationDangerBorder = '#ea302d' +export const ColorProgressBackground = '#cccccc' +export const ColorProgressIndicator = '#007bb4' +export const ColorProgressPercentageDefault = '#191919' +export const ColorProgressPercentageHalf = '#ffffff' +export const ColorProgressBrandedIndicator = '#00919f' +export const ColorStarEmpty = '#cccccc' +export const ColorStarFocus = '#758992' +export const ColorStarFull = '#fc961e' +export const ColorStarHover = '#ffc17d' +export const ColorTabsBackground = '#ffffff' +export const ColorTabsShadow = '#000000' +export const ColorTabsDefault = '#191919' +export const ColorTabsHover = '#007f8c' +export const ColorTabsDisabled = '#666666' +export const ColorTabsActive = '#00919f' +export const ColorTabsActiveDisabled = '#91d5db' +export const ColorTagTextLightBackground = '#ffffff' +export const ColorTagTextLightBorder = '#808080' +export const ColorTagTextLightText = '#191919' +export const ColorTagTextDarkBackground = '#191919' +export const ColorTagTextDarkBorder = '#ffffff' +export const ColorTagTextDarkText = '#ffffff' +export const ColorTagLinkLightBackground = '#ffffff' +export const ColorTagLinkLightBorder = '#808080' +export const ColorTagLinkLightText = '#191919' +export const ColorTagLinkLightHoverBackground = '#e6e6e6' +export const ColorTagLinkLightActiveBackground = '#cccccc' +export const ColorTagLinkDarkBackground = '#191919' +export const ColorTagLinkDarkBorder = '#ffffff' +export const ColorTagLinkDarkText = '#ffffff' +export const ColorTagLinkDarkHoverBackground = '#333333' +export const ColorTagLinkDarkActiveBackground = '#4d4d4d' +export const ColorTagSelectableLightBackground = '#ffffff' +export const ColorTagSelectableLightBorder = '#808080' +export const ColorTagSelectableLightText = '#191919' +export const ColorTagSelectableLightHoverBackground = '#48bac4' +export const ColorTagSelectableLightActiveBackground = '#004e57' +export const ColorTagSelectableLightActiveBorder = '#004e57' +export const ColorTagSelectableLightActiveText = '#ffffff' +export const ColorTagSelectableLightDisabledBackground = '#e6e6e6' +export const ColorTagSelectableLightDisabledText = '#808080' +export const ColorTagSelectableLightSelectedBackground = '#007f8c' +export const ColorTagSelectableLightSelectedText = '#ffffff' +export const ColorTagSelectableLightSelectedHoverBackground = '#006974' +export const ColorTagSelectableDarkBackground = '#191919' +export const ColorTagSelectableDarkBorder = '#ffffff' +export const ColorTagSelectableDarkText = '#ffffff' +export const ColorTagSelectableDarkHoverBackground = '#006974' +export const ColorTagSelectableDarkActiveBackground = '#91d5db' +export const ColorTagSelectableDarkActiveBorder = '#91d5db' +export const ColorTagSelectableDarkActiveText = '#191919' +export const ColorTagSelectableDarkSelectedBackground = '#009eac' +export const ColorTagSelectableDarkSelectedBorder = '#009eac' +export const ColorTagSelectableDarkSelectedText = '#191919' +export const ColorTagSelectableDarkSelectedHoverBackground = '#48bac4' +export const ColorTagSelectableDarkDisabledBackground = '#4d4d4d' +export const ColorTagSelectableDarkDisabledText = '#808080' +export const ColorTagRemovableLightBackground = '#333333' +export const ColorTagRemovableLightText = '#ffffff' +export const ColorTagRemovableLightIcon = '#cccccc' +export const ColorTagRemovableLightHoverBackground = '#4d4d4d' +export const ColorTagRemovableLightActiveBackground = '#666666' +export const ColorTagRemovableDarkBackground = '#cccccc' +export const ColorTagRemovableDarkText = '#191919' +export const ColorTagRemovableDarkIcon = '#191919' +export const ColorTagRemovableDarkHoverBackground = '#b3b3b3' +export const ColorTagRemovableDarkActiveBackground = '#999999' +export const ColorToggleOffBackground = '#666666' +export const ColorToggleOffCircle = '#ffffff' +export const ColorToggleOnBackground = '#00919f' +export const ColorToggleOnCircle = '#ffffff' +export const ColorToggleHoverCircle = '#e6e6e6' +export const ColorToggleDisabledBackground = '#e6e6e6' +export const ColorToggleDisabledCircle = '#b3b3b3' +export const ColorToggleDisabledCheckedBackground = '#91d5db' +export const ColorToggleDisabledCheckedCircle = '#ffffff' +export const ColorSecondarySandgrey100 = '#eeedea' +export const ColorSecondarySandgrey200 = '#dddcd5' +export const ColorSecondarySandgrey300 = '#c2c1ba' +export const ColorSecondarySandgrey400 = '#a7a6a0' +export const ColorSecondarySandgrey500 = '#8c8b85' +export const ColorSecondarySandgrey600 = '#71706b' +export const ColorSecondarySandgrey700 = '#555550' +export const ColorSecondarySandgrey800 = '#3a3936' +export const ColorSecondarySandgrey900 = '#1e1e1c' +export const Preset = 'adeo' +export const RadiusS = 2 +export const RadiusM = 4 +export const RadiusL = 6 +export const ShadowSX = '0px' +export const ShadowSY = '1px' +export const ShadowSBlur = '5px' +export const ShadowSSpread = '0px' +export const ShadowSOpacity = '0.2' +export const ShadowMX = '0px' +export const ShadowMY = '2px' +export const ShadowMBlur = '10px' +export const ShadowMSpread = '0px' +export const ShadowMOpacity = '0.2' +export const ShadowLX = '0px' +export const ShadowLY = '4px' +export const ShadowLBlur = '20px' +export const ShadowLSpread = '0px' +export const ShadowLOpacity = '0.2' +export const MagicUnit = 1 +export const LocalRemValue = 16 +export const SizeFont10 = '2.5625rem' // 41px +export const SizeFont11 = '3.0625rem' // 49px +export const SizeFont12 = '3.6875rem' // 59px +export const SizeFont01 = '0.6815rem' // 11px +export const SizeFont02 = '0.75rem' // 12px +export const SizeFont03 = '0.8125rem' // 13px +export const SizeFont04 = '0.875rem' // 14px +export const SizeFont05 = '1rem' // 16px +export const SizeFont06 = '1.125rem' // 18px +export const SizeFont07 = '1.4375rem' // 23px +export const SizeFont08 = '1.75rem' // 28px +export const SizeFont09 = '2.125rem' // 34px +export const SizeLine10Xs = '2.5rem' // 40px +export const SizeLine10S = '3rem' // 48px +export const SizeLine10M = '3.5rem' // 56px +export const SizeLine10L = '3.75rem' // 60px +export const SizeLine11Xs = '3rem' // 48px +export const SizeLine11S = '3.5rem' // 56px +export const SizeLine11M = '4.25rem' // 68px +export const SizeLine11L = '4.5rem' // 72px +export const SizeLine12Xs = '3.75rem' // 60px +export const SizeLine12S = '4.25rem' // 68px +export const SizeLine12M = '5rem' // 80px +export const SizeLine12L = '5.5rem' // 88px +export const SizeLine01Xs = '0.75rem' // 12px +export const SizeLine01S = '0.75rem' // 12px +export const SizeLine01M = '0.875rem' // 14px +export const SizeLine01L = '1rem' // 16px +export const SizeLine02Xs = '0.75rem' // 12px +export const SizeLine02S = '0.875rem' // 14px +export const SizeLine02M = '1rem' // 16px +export const SizeLine02L = '1.125rem' // 18px +export const SizeLine03Xs = '0.875rem' // 14px +export const SizeLine03S = '1rem' // 16px +export const SizeLine03M = '1.125rem' // 18px +export const SizeLine03L = '1.25rem' // 20px +export const SizeLine04Xs = '0.875rem' // 14px +export const SizeLine04S = '1rem' // 16px +export const SizeLine04M = '1.125rem' // 18px +export const SizeLine04L = '1.375rem' // 22px +export const SizeLine05Xs = '1rem' // 16px +export const SizeLine05S = '1.125rem' // 18px +export const SizeLine05M = '1.375rem' // 22px +export const SizeLine05L = '1.5rem' // 24px +export const SizeLine06Xs = '1.125rem' // 18px +export const SizeLine06S = '1.25rem' // 20px +export const SizeLine06M = '1.5rem' // 24px +export const SizeLine06L = '1.75rem' // 28px +export const SizeLine07Xs = '1.5rem' // 24px +export const SizeLine07S = '1.75rem' // 28px +export const SizeLine07M = '2rem' // 32px +export const SizeLine07L = '2.25rem' // 36px +export const SizeLine08Xs = '1.75rem' // 28px +export const SizeLine08S = '2rem' // 32px +export const SizeLine08M = '2.25rem' // 36px +export const SizeLine08L = '2.75rem' // 44px +export const SizeLine09Xs = '2.25rem' // 36px +export const SizeLine09S = '2.5rem' // 40px +export const SizeLine09M = '2.75rem' // 44px +export const SizeLine09L = '3.25rem' // 52px +export const SizeGutterScreenS = '1rem' +export const SizeGutterScreenM = '2rem' +export const ScreenS = '0px' +export const ScreenSMedium = '320px' +export const ScreenSLarge = '360px' +export const ScreenSXlarge = '390px' +export const ScreenM = '680px' +export const ScreenMMedium = '769px' +export const ScreenL = '1024px' +export const ScreenLMedium = '1100px' +export const ScreenXl = '1280px' +export const ScreenXlMedium = '1440px' +export const ScreenXlLarge = '1680px' +export const ScreenXxl = '1920px' diff --git a/packages/tokens/buildAdeo/js/tokensObject.js b/packages/tokens/buildAdeo/js/tokensObject.js new file mode 100644 index 000000000..6dd10affc --- /dev/null +++ b/packages/tokens/buildAdeo/js/tokensObject.js @@ -0,0 +1,8303 @@ +module.exports = { + border: { + s: { + value: 1, + filePath: 'packages/tokens/properties/border/base.json', + isSource: true, + original: { + value: 1, + }, + name: 'BorderS', + attributes: { + category: 'border', + type: 's', + }, + path: ['border', 's'], + }, + m: { + value: 2, + filePath: 'packages/tokens/properties/border/base.json', + isSource: true, + original: { + value: 2, + }, + name: 'BorderM', + attributes: { + category: 'border', + type: 'm', + }, + path: ['border', 'm'], + }, + l: { + value: 3, + filePath: 'packages/tokens/properties/border/base.json', + isSource: true, + original: { + value: 3, + }, + name: 'BorderL', + attributes: { + category: 'border', + type: 'l', + }, + path: ['border', 'l'], + }, + }, + color: { + badge: { + info: { + background: { + value: '#daeff7', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.info.100.value}', + }, + name: 'ColorBadgeInfoBackground', + attributes: { + category: 'color', + type: 'badge', + item: 'info', + subitem: 'background', + }, + path: ['color', 'badge', 'info', 'background'], + }, + border: { + value: '#0b96cc', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.info.500.value}', + }, + name: 'ColorBadgeInfoBorder', + attributes: { + category: 'color', + type: 'badge', + item: 'info', + subitem: 'border', + }, + path: ['color', 'badge', 'info', 'border'], + }, + text: { + value: '#005c91', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.info.700.value}', + }, + name: 'ColorBadgeInfoText', + attributes: { + category: 'color', + type: 'badge', + item: 'info', + subitem: 'text', + }, + path: ['color', 'badge', 'info', 'text'], + }, + }, + success: { + background: { + value: '#ebf5de', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.success.100.value}', + }, + name: 'ColorBadgeSuccessBackground', + attributes: { + category: 'color', + type: 'badge', + item: 'success', + subitem: 'background', + }, + path: ['color', 'badge', 'success', 'background'], + }, + border: { + value: '#46a610', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.success.500.value}', + }, + name: 'ColorBadgeSuccessBorder', + attributes: { + category: 'color', + type: 'badge', + item: 'success', + subitem: 'border', + }, + path: ['color', 'badge', 'success', 'border'], + }, + text: { + value: '#006902', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.success.700.value}', + }, + name: 'ColorBadgeSuccessText', + attributes: { + category: 'color', + type: 'badge', + item: 'success', + subitem: 'text', + }, + path: ['color', 'badge', 'success', 'text'], + }, + }, + warning: { + background: { + value: '#fdf1e8', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.warning.100.value}', + }, + name: 'ColorBadgeWarningBackground', + attributes: { + category: 'color', + type: 'badge', + item: 'warning', + subitem: 'background', + }, + path: ['color', 'badge', 'warning', 'background'], + }, + border: { + value: '#ea7315', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.warning.500.value}', + }, + name: 'ColorBadgeWarningBorder', + attributes: { + category: 'color', + type: 'badge', + item: 'warning', + subitem: 'border', + }, + path: ['color', 'badge', 'warning', 'border'], + }, + text: { + value: '#8c3500', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.warning.700.value}', + }, + name: 'ColorBadgeWarningText', + attributes: { + category: 'color', + type: 'badge', + item: 'warning', + subitem: 'text', + }, + path: ['color', 'badge', 'warning', 'text'], + }, + }, + danger: { + background: { + value: '#fdeaea', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.danger.100.value}', + }, + name: 'ColorBadgeDangerBackground', + attributes: { + category: 'color', + type: 'badge', + item: 'danger', + subitem: 'background', + }, + path: ['color', 'badge', 'danger', 'background'], + }, + border: { + value: '#ea302d', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.danger.500.value}', + }, + name: 'ColorBadgeDangerBorder', + attributes: { + category: 'color', + type: 'badge', + item: 'danger', + subitem: 'border', + }, + path: ['color', 'badge', 'danger', 'border'], + }, + text: { + value: '#8c0003', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.danger.700.value}', + }, + name: 'ColorBadgeDangerText', + attributes: { + category: 'color', + type: 'badge', + item: 'danger', + subitem: 'text', + }, + path: ['color', 'badge', 'danger', 'text'], + }, + }, + neutral: { + background: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorBadgeNeutralBackground', + attributes: { + category: 'color', + type: 'badge', + item: 'neutral', + subitem: 'background', + }, + path: ['color', 'badge', 'neutral', 'background'], + }, + border: { + value: '#808080', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorBadgeNeutralBorder', + attributes: { + category: 'color', + type: 'badge', + item: 'neutral', + subitem: 'border', + }, + path: ['color', 'badge', 'neutral', 'border'], + }, + text: { + value: '#4d4d4d', + filePath: 'packages/tokens/properties/color/badge.json', + isSource: true, + original: { + value: '{color.grey.700.value}', + }, + name: 'ColorBadgeNeutralText', + attributes: { + category: 'color', + type: 'badge', + item: 'neutral', + subitem: 'text', + }, + path: ['color', 'badge', 'neutral', 'text'], + }, + }, + }, + 'primary-01': { + 100: { + value: '#d9f0f3', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#D9F0F3', + }, + name: 'ColorPrimary01100', + attributes: { + category: 'color', + type: 'primary-01', + item: '100', + }, + path: ['color', 'primary-01', '100'], + }, + 200: { + value: '#91d5db', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#91D5DB', + }, + name: 'ColorPrimary01200', + attributes: { + category: 'color', + type: 'primary-01', + item: '200', + }, + path: ['color', 'primary-01', '200'], + }, + 300: { + value: '#48bac4', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#48BAC4', + }, + name: 'ColorPrimary01300', + attributes: { + category: 'color', + type: 'primary-01', + item: '300', + }, + path: ['color', 'primary-01', '300'], + }, + 400: { + value: '#009eac', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#009EAC', + }, + name: 'ColorPrimary01400', + attributes: { + category: 'color', + type: 'primary-01', + item: '400', + }, + path: ['color', 'primary-01', '400'], + }, + 500: { + value: '#00919f', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#00919F', + }, + name: 'ColorPrimary01500', + attributes: { + category: 'color', + type: 'primary-01', + item: '500', + }, + path: ['color', 'primary-01', '500'], + }, + 600: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#007F8C', + }, + name: 'ColorPrimary01600', + attributes: { + category: 'color', + type: 'primary-01', + item: '600', + }, + path: ['color', 'primary-01', '600'], + }, + 700: { + value: '#006974', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#006974', + }, + name: 'ColorPrimary01700', + attributes: { + category: 'color', + type: 'primary-01', + item: '700', + }, + path: ['color', 'primary-01', '700'], + }, + 800: { + value: '#004e57', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#004E57', + }, + name: 'ColorPrimary01800', + attributes: { + category: 'color', + type: 'primary-01', + item: '800', + }, + path: ['color', 'primary-01', '800'], + }, + 900: { + value: '#002e33', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#002E33', + }, + name: 'ColorPrimary01900', + attributes: { + category: 'color', + type: 'primary-01', + item: '900', + }, + path: ['color', 'primary-01', '900'], + }, + }, + 'primary-02': { + 100: { + value: '#cfd2d8', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#CFD2D8', + }, + name: 'ColorPrimary02100', + attributes: { + category: 'color', + type: 'primary-02', + item: '100', + }, + path: ['color', 'primary-02', '100'], + }, + 200: { + value: '#cfd2d8', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#CFD2D8', + }, + name: 'ColorPrimary02200', + attributes: { + category: 'color', + type: 'primary-02', + item: '200', + }, + path: ['color', 'primary-02', '200'], + }, + 300: { + value: '#b3b7c1', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#B3B7C1', + }, + name: 'ColorPrimary02300', + attributes: { + category: 'color', + type: 'primary-02', + item: '300', + }, + path: ['color', 'primary-02', '300'], + }, + 400: { + value: '#8f94a3', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#8F94A3', + }, + name: 'ColorPrimary02400', + attributes: { + category: 'color', + type: 'primary-02', + item: '400', + }, + path: ['color', 'primary-02', '400'], + }, + 500: { + value: '#6a7081', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#6A7081', + }, + name: 'ColorPrimary02500', + attributes: { + category: 'color', + type: 'primary-02', + item: '500', + }, + path: ['color', 'primary-02', '500'], + }, + 600: { + value: '#494f60', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#494F60', + }, + name: 'ColorPrimary02600', + attributes: { + category: 'color', + type: 'primary-02', + item: '600', + }, + path: ['color', 'primary-02', '600'], + }, + 700: { + value: '#343b4c', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#343B4C', + }, + name: 'ColorPrimary02700', + attributes: { + category: 'color', + type: 'primary-02', + item: '700', + }, + path: ['color', 'primary-02', '700'], + }, + 800: { + value: '#242938', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#242938', + }, + name: 'ColorPrimary02800', + attributes: { + category: 'color', + type: 'primary-02', + item: '800', + }, + path: ['color', 'primary-02', '800'], + }, + 900: { + value: '#171b26', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#171B26', + }, + name: 'ColorPrimary02900', + attributes: { + category: 'color', + type: 'primary-02', + item: '900', + }, + path: ['color', 'primary-02', '900'], + }, + }, + grey: { + 100: { + value: '#e6e6e6', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#E6E6E6', + }, + name: 'ColorGrey100', + attributes: { + category: 'color', + type: 'grey', + item: '100', + }, + path: ['color', 'grey', '100'], + }, + 200: { + value: '#cccccc', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#CCCCCC', + }, + name: 'ColorGrey200', + attributes: { + category: 'color', + type: 'grey', + item: '200', + }, + path: ['color', 'grey', '200'], + }, + 300: { + value: '#b3b3b3', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#B3B3B3', + }, + name: 'ColorGrey300', + attributes: { + category: 'color', + type: 'grey', + item: '300', + }, + path: ['color', 'grey', '300'], + }, + 400: { + value: '#999999', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#999999', + }, + name: 'ColorGrey400', + attributes: { + category: 'color', + type: 'grey', + item: '400', + }, + path: ['color', 'grey', '400'], + }, + 500: { + value: '#808080', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#808080', + }, + name: 'ColorGrey500', + attributes: { + category: 'color', + type: 'grey', + item: '500', + }, + path: ['color', 'grey', '500'], + }, + 600: { + value: '#666666', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#666666', + }, + name: 'ColorGrey600', + attributes: { + category: 'color', + type: 'grey', + item: '600', + }, + path: ['color', 'grey', '600'], + }, + 700: { + value: '#4d4d4d', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#4D4D4D', + }, + name: 'ColorGrey700', + attributes: { + category: 'color', + type: 'grey', + item: '700', + }, + path: ['color', 'grey', '700'], + }, + 800: { + value: '#333333', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#333333', + }, + name: 'ColorGrey800', + attributes: { + category: 'color', + type: 'grey', + item: '800', + }, + path: ['color', 'grey', '800'], + }, + 900: { + value: '#191919', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#191919', + }, + name: 'ColorGrey900', + attributes: { + category: 'color', + type: 'grey', + item: '900', + }, + path: ['color', 'grey', '900'], + }, + 999: { + value: '#000000', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#000000', + }, + name: 'ColorGrey999', + attributes: { + category: 'color', + type: 'grey', + item: '999', + }, + path: ['color', 'grey', '999'], + }, + '000': { + value: '#ffffff', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#FFFFFF', + }, + name: 'ColorGrey000', + attributes: { + category: 'color', + type: 'grey', + item: '000', + }, + path: ['color', 'grey', '000'], + }, + }, + 'secondary-blue': { + 100: { + value: '#eaedef', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EAEDEF', + }, + name: 'ColorSecondaryBlue100', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '100', + }, + path: ['color', 'secondary-blue', '100'], + }, + 200: { + value: '#cdd4d8', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#CDD4D8', + }, + name: 'ColorSecondaryBlue200', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '200', + }, + path: ['color', 'secondary-blue', '200'], + }, + 300: { + value: '#b0bbc0', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#B0BBC0', + }, + name: 'ColorSecondaryBlue300', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '300', + }, + path: ['color', 'secondary-blue', '300'], + }, + 400: { + value: '#92a2a9', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#92A2A9', + }, + name: 'ColorSecondaryBlue400', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '400', + }, + path: ['color', 'secondary-blue', '400'], + }, + 500: { + value: '#758992', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#758992', + }, + name: 'ColorSecondaryBlue500', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '500', + }, + path: ['color', 'secondary-blue', '500'], + }, + 600: { + value: '#5b737d', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#5B737D', + }, + name: 'ColorSecondaryBlue600', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '600', + }, + path: ['color', 'secondary-blue', '600'], + }, + 700: { + value: '#405d68', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#405D68', + }, + name: 'ColorSecondaryBlue700', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '700', + }, + path: ['color', 'secondary-blue', '700'], + }, + 800: { + value: '#264653', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#264653', + }, + name: 'ColorSecondaryBlue800', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '800', + }, + path: ['color', 'secondary-blue', '800'], + }, + 900: { + value: '#082435', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#082435', + }, + name: 'ColorSecondaryBlue900', + attributes: { + category: 'color', + type: 'secondary-blue', + item: '900', + }, + path: ['color', 'secondary-blue', '900'], + }, + }, + 'secondary-green': { + 100: { + value: '#d9f0f3', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.100.value}', + }, + name: 'ColorSecondaryGreen100', + attributes: { + category: 'color', + type: 'secondary-green', + item: '100', + }, + path: ['color', 'secondary-green', '100'], + }, + 200: { + value: '#91d5db', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.200.value}', + }, + name: 'ColorSecondaryGreen200', + attributes: { + category: 'color', + type: 'secondary-green', + item: '200', + }, + path: ['color', 'secondary-green', '200'], + }, + 300: { + value: '#48bac4', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.300.value}', + }, + name: 'ColorSecondaryGreen300', + attributes: { + category: 'color', + type: 'secondary-green', + item: '300', + }, + path: ['color', 'secondary-green', '300'], + }, + 400: { + value: '#009eac', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.400.value}', + }, + name: 'ColorSecondaryGreen400', + attributes: { + category: 'color', + type: 'secondary-green', + item: '400', + }, + path: ['color', 'secondary-green', '400'], + }, + 500: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorSecondaryGreen500', + attributes: { + category: 'color', + type: 'secondary-green', + item: '500', + }, + path: ['color', 'secondary-green', '500'], + }, + 600: { + value: '#007f8c', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorSecondaryGreen600', + attributes: { + category: 'color', + type: 'secondary-green', + item: '600', + }, + path: ['color', 'secondary-green', '600'], + }, + 700: { + value: '#006974', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorSecondaryGreen700', + attributes: { + category: 'color', + type: 'secondary-green', + item: '700', + }, + path: ['color', 'secondary-green', '700'], + }, + 800: { + value: '#004e57', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.800.value}', + }, + name: 'ColorSecondaryGreen800', + attributes: { + category: 'color', + type: 'secondary-green', + item: '800', + }, + path: ['color', 'secondary-green', '800'], + }, + 900: { + value: '#002e33', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '{color.primary-01.900.value}', + }, + name: 'ColorSecondaryGreen900', + attributes: { + category: 'color', + type: 'secondary-green', + item: '900', + }, + path: ['color', 'secondary-green', '900'], + }, + }, + 'secondary-purple': { + 100: { + value: '#e7e7f0', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#E7E7F0', + }, + name: 'ColorSecondaryPurple100', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '100', + }, + path: ['color', 'secondary-purple', '100'], + }, + 200: { + value: '#c5c5dc', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#C5C5DC', + }, + name: 'ColorSecondaryPurple200', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '200', + }, + path: ['color', 'secondary-purple', '200'], + }, + 300: { + value: '#a4a3c7', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#A4A3C7', + }, + name: 'ColorSecondaryPurple300', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '300', + }, + path: ['color', 'secondary-purple', '300'], + }, + 400: { + value: '#8281b2', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#8281B2', + }, + name: 'ColorSecondaryPurple400', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '400', + }, + path: ['color', 'secondary-purple', '400'], + }, + 500: { + value: '#605f9d', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#605F9D', + }, + name: 'ColorSecondaryPurple500', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '500', + }, + path: ['color', 'secondary-purple', '500'], + }, + 600: { + value: '#4b4a8c', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#4B4A8C', + }, + name: 'ColorSecondaryPurple600', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '600', + }, + path: ['color', 'secondary-purple', '600'], + }, + 700: { + value: '#393879', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#393879', + }, + name: 'ColorSecondaryPurple700', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '700', + }, + path: ['color', 'secondary-purple', '700'], + }, + 800: { + value: '#282863', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#282863', + }, + name: 'ColorSecondaryPurple800', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '800', + }, + path: ['color', 'secondary-purple', '800'], + }, + 900: { + value: '#1a1a4b', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#1A1A4B', + }, + name: 'ColorSecondaryPurple900', + attributes: { + category: 'color', + type: 'secondary-purple', + item: '900', + }, + path: ['color', 'secondary-purple', '900'], + }, + }, + 'secondary-red': { + 100: { + value: '#feedee', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FEEDEE', + }, + name: 'ColorSecondaryRed100', + attributes: { + category: 'color', + type: 'secondary-red', + item: '100', + }, + path: ['color', 'secondary-red', '100'], + }, + 200: { + value: '#fab9bc', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FAB9BC', + }, + name: 'ColorSecondaryRed200', + attributes: { + category: 'color', + type: 'secondary-red', + item: '200', + }, + path: ['color', 'secondary-red', '200'], + }, + 300: { + value: '#f38789', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#F38789', + }, + name: 'ColorSecondaryRed300', + attributes: { + category: 'color', + type: 'secondary-red', + item: '300', + }, + path: ['color', 'secondary-red', '300'], + }, + 400: { + value: '#ea5d58', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#EA5D58', + }, + name: 'ColorSecondaryRed400', + attributes: { + category: 'color', + type: 'secondary-red', + item: '400', + }, + path: ['color', 'secondary-red', '400'], + }, + 500: { + value: '#df382b', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#DF382B', + }, + name: 'ColorSecondaryRed500', + attributes: { + category: 'color', + type: 'secondary-red', + item: '500', + }, + path: ['color', 'secondary-red', '500'], + }, + 600: { + value: '#b42a27', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#B42A27', + }, + name: 'ColorSecondaryRed600', + attributes: { + category: 'color', + type: 'secondary-red', + item: '600', + }, + path: ['color', 'secondary-red', '600'], + }, + 700: { + value: '#8b2226', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#8B2226', + }, + name: 'ColorSecondaryRed700', + attributes: { + category: 'color', + type: 'secondary-red', + item: '700', + }, + path: ['color', 'secondary-red', '700'], + }, + 800: { + value: '#641b21', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#641B21', + }, + name: 'ColorSecondaryRed800', + attributes: { + category: 'color', + type: 'secondary-red', + item: '800', + }, + path: ['color', 'secondary-red', '800'], + }, + 900: { + value: '#3e1219', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#3E1219', + }, + name: 'ColorSecondaryRed900', + attributes: { + category: 'color', + type: 'secondary-red', + item: '900', + }, + path: ['color', 'secondary-red', '900'], + }, + }, + 'secondary-orange': { + 100: { + value: '#fff5eb', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FFF5EB', + }, + name: 'ColorSecondaryOrange100', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '100', + }, + path: ['color', 'secondary-orange', '100'], + }, + 200: { + value: '#ffdab2', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FFDAB2', + }, + name: 'ColorSecondaryOrange200', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '200', + }, + path: ['color', 'secondary-orange', '200'], + }, + 300: { + value: '#ffc17d', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FFC17D', + }, + name: 'ColorSecondaryOrange300', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '300', + }, + path: ['color', 'secondary-orange', '300'], + }, + 400: { + value: '#ffab4b', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FFAB4B', + }, + name: 'ColorSecondaryOrange400', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '400', + }, + path: ['color', 'secondary-orange', '400'], + }, + 500: { + value: '#fc961e', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FC961E', + }, + name: 'ColorSecondaryOrange500', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '500', + }, + path: ['color', 'secondary-orange', '500'], + }, + 600: { + value: '#c86f21', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#C86F21', + }, + name: 'ColorSecondaryOrange600', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '600', + }, + path: ['color', 'secondary-orange', '600'], + }, + 700: { + value: '#974f20', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#974F20', + }, + name: 'ColorSecondaryOrange700', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '700', + }, + path: ['color', 'secondary-orange', '700'], + }, + 800: { + value: '#6a351c', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#6A351C', + }, + name: 'ColorSecondaryOrange800', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '800', + }, + path: ['color', 'secondary-orange', '800'], + }, + 900: { + value: '#401f15', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#401F15', + }, + name: 'ColorSecondaryOrange900', + attributes: { + category: 'color', + type: 'secondary-orange', + item: '900', + }, + path: ['color', 'secondary-orange', '900'], + }, + }, + 'secondary-yellow': { + 100: { + value: '#fff8e2', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FFF8E2', + }, + name: 'ColorSecondaryYellow100', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '100', + }, + path: ['color', 'secondary-yellow', '100'], + }, + 200: { + value: '#ffebaf', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FFEBAF', + }, + name: 'ColorSecondaryYellow200', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '200', + }, + path: ['color', 'secondary-yellow', '200'], + }, + 300: { + value: '#fee07d', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FEE07D', + }, + name: 'ColorSecondaryYellow300', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '300', + }, + path: ['color', 'secondary-yellow', '300'], + }, + 400: { + value: '#fcd64c', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#FCD64C', + }, + name: 'ColorSecondaryYellow400', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '400', + }, + path: ['color', 'secondary-yellow', '400'], + }, + 500: { + value: '#f8cc1c', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#F8CC1C', + }, + name: 'ColorSecondaryYellow500', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '500', + }, + path: ['color', 'secondary-yellow', '500'], + }, + 600: { + value: '#c9a21b', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#C9A21B', + }, + name: 'ColorSecondaryYellow600', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '600', + }, + path: ['color', 'secondary-yellow', '600'], + }, + 700: { + value: '#9c7b18', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#9C7B18', + }, + name: 'ColorSecondaryYellow700', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '700', + }, + path: ['color', 'secondary-yellow', '700'], + }, + 800: { + value: '#705613', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#705613', + }, + name: 'ColorSecondaryYellow800', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '800', + }, + path: ['color', 'secondary-yellow', '800'], + }, + 900: { + value: '#46350d', + filePath: 'packages/tokens/properties/color/base.json', + isSource: true, + original: { + value: '#46350D', + }, + name: 'ColorSecondaryYellow900', + attributes: { + category: 'color', + type: 'secondary-yellow', + item: '900', + }, + path: ['color', 'secondary-yellow', '900'], + }, + }, + danger: { + 100: { + value: '#fdeaea', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#FDEAEA', + }, + name: 'ColorDanger100', + attributes: { + category: 'color', + type: 'danger', + item: '100', + }, + path: ['color', 'danger', '100'], + }, + 200: { + value: '#f8bcbb', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#F8BCBB', + }, + name: 'ColorDanger200', + attributes: { + category: 'color', + type: 'danger', + item: '200', + }, + path: ['color', 'danger', '200'], + }, + 300: { + value: '#f38d8c', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#F38D8C', + }, + name: 'ColorDanger300', + attributes: { + category: 'color', + type: 'danger', + item: '300', + }, + path: ['color', 'danger', '300'], + }, + 400: { + value: '#ef5f5c', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EF5F5C', + }, + name: 'ColorDanger400', + attributes: { + category: 'color', + type: 'danger', + item: '400', + }, + path: ['color', 'danger', '400'], + }, + 500: { + value: '#ea302d', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EA302D', + }, + name: 'ColorDanger500', + attributes: { + category: 'color', + type: 'danger', + item: '500', + }, + path: ['color', 'danger', '500'], + }, + 600: { + value: '#c61112', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#C61112', + }, + name: 'ColorDanger600', + attributes: { + category: 'color', + type: 'danger', + item: '600', + }, + path: ['color', 'danger', '600'], + }, + 700: { + value: '#8c0003', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#8C0003', + }, + name: 'ColorDanger700', + attributes: { + category: 'color', + type: 'danger', + item: '700', + }, + path: ['color', 'danger', '700'], + }, + 800: { + value: '#530000', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#530000', + }, + name: 'ColorDanger800', + attributes: { + category: 'color', + type: 'danger', + item: '800', + }, + path: ['color', 'danger', '800'], + }, + 900: { + value: '#2d0000', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#2D0000', + }, + name: 'ColorDanger900', + attributes: { + category: 'color', + type: 'danger', + item: '900', + }, + path: ['color', 'danger', '900'], + }, + }, + info: { + 100: { + value: '#daeff7', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#DAEFF7', + }, + name: 'ColorInfo100', + attributes: { + category: 'color', + type: 'info', + item: '100', + }, + path: ['color', 'info', '100'], + }, + 200: { + value: '#a7d9ed', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#A7D9ED', + }, + name: 'ColorInfo200', + attributes: { + category: 'color', + type: 'info', + item: '200', + }, + path: ['color', 'info', '200'], + }, + 300: { + value: '#73c3e2', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#73C3E2', + }, + name: 'ColorInfo300', + attributes: { + category: 'color', + type: 'info', + item: '300', + }, + path: ['color', 'info', '300'], + }, + 400: { + value: '#3facd7', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#3FACD7', + }, + name: 'ColorInfo400', + attributes: { + category: 'color', + type: 'info', + item: '400', + }, + path: ['color', 'info', '400'], + }, + 500: { + value: '#0b96cc', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#0B96CC', + }, + name: 'ColorInfo500', + attributes: { + category: 'color', + type: 'info', + item: '500', + }, + path: ['color', 'info', '500'], + }, + 600: { + value: '#007bb4', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#007BB4', + }, + name: 'ColorInfo600', + attributes: { + category: 'color', + type: 'info', + item: '600', + }, + path: ['color', 'info', '600'], + }, + 700: { + value: '#005c91', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#005C91', + }, + name: 'ColorInfo700', + attributes: { + category: 'color', + type: 'info', + item: '700', + }, + path: ['color', 'info', '700'], + }, + 800: { + value: '#003a5c', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#003A5C', + }, + name: 'ColorInfo800', + attributes: { + category: 'color', + type: 'info', + item: '800', + }, + path: ['color', 'info', '800'], + }, + 900: { + value: '#002a41', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#002A41', + }, + name: 'ColorInfo900', + attributes: { + category: 'color', + type: 'info', + item: '900', + }, + path: ['color', 'info', '900'], + }, + }, + warning: { + 100: { + value: '#fdf1e8', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#FDF1E8', + }, + name: 'ColorWarning100', + attributes: { + category: 'color', + type: 'warning', + item: '100', + }, + path: ['color', 'warning', '100'], + }, + 200: { + value: '#f8d2b3', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#F8D2B3', + }, + name: 'ColorWarning200', + attributes: { + category: 'color', + type: 'warning', + item: '200', + }, + path: ['color', 'warning', '200'], + }, + 300: { + value: '#f4b27e', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#F4B27E', + }, + name: 'ColorWarning300', + attributes: { + category: 'color', + type: 'warning', + item: '300', + }, + path: ['color', 'warning', '300'], + }, + 400: { + value: '#ef934a', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EF934A', + }, + name: 'ColorWarning400', + attributes: { + category: 'color', + type: 'warning', + item: '400', + }, + path: ['color', 'warning', '400'], + }, + 500: { + value: '#ea7315', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EA7315', + }, + name: 'ColorWarning500', + attributes: { + category: 'color', + type: 'warning', + item: '500', + }, + path: ['color', 'warning', '500'], + }, + 600: { + value: '#c65200', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#C65200', + }, + name: 'ColorWarning600', + attributes: { + category: 'color', + type: 'warning', + item: '600', + }, + path: ['color', 'warning', '600'], + }, + 700: { + value: '#8c3500', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#8C3500', + }, + name: 'ColorWarning700', + attributes: { + category: 'color', + type: 'warning', + item: '700', + }, + path: ['color', 'warning', '700'], + }, + 800: { + value: '#531b00', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#531B00', + }, + name: 'ColorWarning800', + attributes: { + category: 'color', + type: 'warning', + item: '800', + }, + path: ['color', 'warning', '800'], + }, + 900: { + value: '#360e00', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#360E00', + }, + name: 'ColorWarning900', + attributes: { + category: 'color', + type: 'warning', + item: '900', + }, + path: ['color', 'warning', '900'], + }, + }, + success: { + 100: { + value: '#ebf5de', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EBF5DE', + }, + name: 'ColorSuccess100', + attributes: { + category: 'color', + type: 'success', + item: '100', + }, + path: ['color', 'success', '100'], + }, + 200: { + value: '#c5e39e', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#C5E39E', + }, + name: 'ColorSuccess200', + attributes: { + category: 'color', + type: 'success', + item: '200', + }, + path: ['color', 'success', '200'], + }, + 300: { + value: '#9ed05f', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#9ED05F', + }, + name: 'ColorSuccess300', + attributes: { + category: 'color', + type: 'success', + item: '300', + }, + path: ['color', 'success', '300'], + }, + 400: { + value: '#78be20', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#78BE20', + }, + name: 'ColorSuccess400', + attributes: { + category: 'color', + type: 'success', + item: '400', + }, + path: ['color', 'success', '400'], + }, + 500: { + value: '#46a610', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#46A610', + }, + name: 'ColorSuccess500', + attributes: { + category: 'color', + type: 'success', + item: '500', + }, + path: ['color', 'success', '500'], + }, + 600: { + value: '#188803', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#188803', + }, + name: 'ColorSuccess600', + attributes: { + category: 'color', + type: 'success', + item: '600', + }, + path: ['color', 'success', '600'], + }, + 700: { + value: '#006902', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#006902', + }, + name: 'ColorSuccess700', + attributes: { + category: 'color', + type: 'success', + item: '700', + }, + path: ['color', 'success', '700'], + }, + 800: { + value: '#035010', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#035010', + }, + name: 'ColorSuccess800', + attributes: { + category: 'color', + type: 'success', + item: '800', + }, + path: ['color', 'success', '800'], + }, + 900: { + value: '#023618', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#023618', + }, + name: 'ColorSuccess900', + attributes: { + category: 'color', + type: 'success', + item: '900', + }, + path: ['color', 'success', '900'], + }, + }, + button: { + solid: { + background: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorButtonSolidBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'background', + }, + path: ['color', 'button', 'solid', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'font', + }, + path: ['color', 'button', 'solid', 'font'], + }, + focus: { + border: { + value: '#006974', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorButtonSolidFocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'solid', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonSolidDisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'disabled', + state: 'background', + }, + path: ['color', 'button', 'solid', 'disabled', 'background'], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonSolidDisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'solid', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#006974', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorButtonSolidActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'active', + state: 'background', + }, + path: ['color', 'button', 'solid', 'active', 'background'], + }, + }, + hover: { + background: { + value: '#006974', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorButtonSolidHoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'hover', + state: 'background', + }, + path: ['color', 'button', 'solid', 'hover', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidHoverFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid', + subitem: 'hover', + state: 'font', + }, + path: ['color', 'button', 'solid', 'hover', 'font'], + }, + }, + }, + 'solid-primary-02': { + background: { + value: '#6a7081', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.500.value}', + }, + name: 'ColorButtonSolidPrimary02Background', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'background', + }, + path: ['color', 'button', 'solid-primary-02', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidPrimary02Font', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'font', + }, + path: ['color', 'button', 'solid-primary-02', 'font'], + }, + focus: { + border: { + value: '#171b26', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.900.value}', + }, + name: 'ColorButtonSolidPrimary02FocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'solid-primary-02', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonSolidPrimary02DisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'disabled', + state: 'background', + }, + path: [ + 'color', + 'button', + 'solid-primary-02', + 'disabled', + 'background', + ], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonSolidPrimary02DisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'solid-primary-02', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#171b26', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.900.value}', + }, + name: 'ColorButtonSolidPrimary02ActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'active', + state: 'background', + }, + path: [ + 'color', + 'button', + 'solid-primary-02', + 'active', + 'background', + ], + }, + }, + hover: { + background: { + value: '#242938', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.800.value}', + }, + name: 'ColorButtonSolidPrimary02HoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'hover', + state: 'background', + }, + path: [ + 'color', + 'button', + 'solid-primary-02', + 'hover', + 'background', + ], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidPrimary02HoverFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-primary-02', + subitem: 'hover', + state: 'font', + }, + path: ['color', 'button', 'solid-primary-02', 'hover', 'font'], + }, + }, + }, + 'solid-neutral': { + background: { + value: '#333333', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorButtonSolidNeutralBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'background', + }, + path: ['color', 'button', 'solid-neutral', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidNeutralFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'font', + }, + path: ['color', 'button', 'solid-neutral', 'font'], + }, + focus: { + border: { + value: '#191919', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorButtonSolidNeutralFocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'solid-neutral', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonSolidNeutralDisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'disabled', + state: 'background', + }, + path: [ + 'color', + 'button', + 'solid-neutral', + 'disabled', + 'background', + ], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonSolidNeutralDisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'solid-neutral', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#333333', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorButtonSolidNeutralActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'active', + state: 'background', + }, + path: ['color', 'button', 'solid-neutral', 'active', 'background'], + }, + }, + hover: { + background: { + value: '#191919', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorButtonSolidNeutralHoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'hover', + state: 'background', + }, + path: ['color', 'button', 'solid-neutral', 'hover', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidNeutralHoverFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-neutral', + subitem: 'hover', + state: 'font', + }, + path: ['color', 'button', 'solid-neutral', 'hover', 'font'], + }, + }, + }, + 'solid-danger': { + background: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorButtonSolidDangerBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'background', + }, + path: ['color', 'button', 'solid-danger', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidDangerFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'font', + }, + path: ['color', 'button', 'solid-danger', 'font'], + }, + focus: { + border: { + value: '#8c0003', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.danger.700.value}', + }, + name: 'ColorButtonSolidDangerFocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'solid-danger', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonSolidDangerDisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'disabled', + state: 'background', + }, + path: ['color', 'button', 'solid-danger', 'disabled', 'background'], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonSolidDangerDisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'solid-danger', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#8c0003', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.danger.700.value}', + }, + name: 'ColorButtonSolidDangerActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'active', + state: 'background', + }, + path: ['color', 'button', 'solid-danger', 'active', 'background'], + }, + }, + hover: { + background: { + value: '#8c0003', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.danger.700.value}', + }, + name: 'ColorButtonSolidDangerHoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'hover', + state: 'background', + }, + path: ['color', 'button', 'solid-danger', 'hover', 'background'], + }, + font: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonSolidDangerHoverFont', + attributes: { + category: 'color', + type: 'button', + item: 'solid-danger', + subitem: 'hover', + state: 'font', + }, + path: ['color', 'button', 'solid-danger', 'hover', 'font'], + }, + }, + }, + bordered: { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonBorderedBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'background', + }, + path: ['color', 'button', 'bordered', 'background'], + }, + border: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorButtonBorderedBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'border', + }, + path: ['color', 'button', 'bordered', 'border'], + }, + font: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorButtonBorderedFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'font', + }, + path: ['color', 'button', 'bordered', 'font'], + }, + focus: { + border: { + value: '#006974', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorButtonBorderedFocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'bordered', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonBorderedDisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'disabled', + state: 'background', + }, + path: ['color', 'button', 'bordered', 'disabled', 'background'], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonBorderedDisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'bordered', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#91d5db', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.200.value}', + }, + name: 'ColorButtonBorderedActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'active', + state: 'background', + }, + path: ['color', 'button', 'bordered', 'active', 'background'], + }, + }, + hover: { + background: { + value: '#d9f0f3', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-01.100.value}', + }, + name: 'ColorButtonBorderedHoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered', + subitem: 'hover', + state: 'background', + }, + path: ['color', 'button', 'bordered', 'hover', 'background'], + }, + }, + }, + 'bordered-primary-02': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonBorderedPrimary02Background', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'background', + }, + path: ['color', 'button', 'bordered-primary-02', 'background'], + }, + border: { + value: '#6a7081', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.500.value}', + }, + name: 'ColorButtonBorderedPrimary02Border', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'border', + }, + path: ['color', 'button', 'bordered-primary-02', 'border'], + }, + font: { + value: '#6a7081', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.500.value}', + }, + name: 'ColorButtonBorderedPrimary02Font', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'font', + }, + path: ['color', 'button', 'bordered-primary-02', 'font'], + }, + focus: { + border: { + value: '#171b26', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.900.value}', + }, + name: 'ColorButtonBorderedPrimary02FocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'bordered-primary-02', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonBorderedPrimary02DisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'disabled', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-primary-02', + 'disabled', + 'background', + ], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonBorderedPrimary02DisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'disabled', + state: 'font', + }, + path: [ + 'color', + 'button', + 'bordered-primary-02', + 'disabled', + 'font', + ], + }, + }, + active: { + background: { + value: '#cfd2d8', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.200.value}', + }, + name: 'ColorButtonBorderedPrimary02ActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'active', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-primary-02', + 'active', + 'background', + ], + }, + }, + hover: { + background: { + value: '#cfd2d8', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.primary-02.100.value}', + }, + name: 'ColorButtonBorderedPrimary02HoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-primary-02', + subitem: 'hover', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-primary-02', + 'hover', + 'background', + ], + }, + }, + }, + 'bordered-neutral': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonBorderedNeutralBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'background', + }, + path: ['color', 'button', 'bordered-neutral', 'background'], + }, + border: { + value: '#333333', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorButtonBorderedNeutralBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'border', + }, + path: ['color', 'button', 'bordered-neutral', 'border'], + }, + font: { + value: '#333333', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorButtonBorderedNeutralFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'font', + }, + path: ['color', 'button', 'bordered-neutral', 'font'], + }, + focus: { + border: { + value: '#191919', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorButtonBorderedNeutralFocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'bordered-neutral', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonBorderedNeutralDisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'disabled', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-neutral', + 'disabled', + 'background', + ], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonBorderedNeutralDisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'bordered-neutral', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonBorderedNeutralActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'active', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-neutral', + 'active', + 'background', + ], + }, + }, + hover: { + background: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorButtonBorderedNeutralHoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-neutral', + subitem: 'hover', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-neutral', + 'hover', + 'background', + ], + }, + }, + }, + 'bordered-danger': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorButtonBorderedDangerBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'background', + }, + path: ['color', 'button', 'bordered-danger', 'background'], + }, + border: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorButtonBorderedDangerBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'border', + }, + path: ['color', 'button', 'bordered-danger', 'border'], + }, + font: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/button.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorButtonBorderedDangerFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'font', + }, + path: ['color', 'button', 'bordered-danger', 'font'], + }, + focus: { + border: { + value: '#8b2226', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.secondary-red.700.value}', + }, + name: 'ColorButtonBorderedDangerFocusBorder', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'focus', + state: 'border', + }, + path: ['color', 'button', 'bordered-danger', 'focus', 'border'], + }, + }, + disabled: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorButtonBorderedDangerDisabledBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'disabled', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-danger', + 'disabled', + 'background', + ], + }, + font: { + value: '#666666', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorButtonBorderedDangerDisabledFont', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'disabled', + state: 'font', + }, + path: ['color', 'button', 'bordered-danger', 'disabled', 'font'], + }, + }, + active: { + background: { + value: '#fab9bc', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.secondary-red.200.value}', + }, + name: 'ColorButtonBorderedDangerActiveBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'active', + state: 'background', + }, + path: [ + 'color', + 'button', + 'bordered-danger', + 'active', + 'background', + ], + }, + }, + hover: { + background: { + value: '#feedee', + filePath: 'packages/tokens/properties/color/button.json', + isSource: true, + original: { + value: '{color.secondary-red.100.value}', + }, + name: 'ColorButtonBorderedDangerHoverBackground', + attributes: { + category: 'color', + type: 'button', + item: 'bordered-danger', + subitem: 'hover', + state: 'background', + }, + path: ['color', 'button', 'bordered-danger', 'hover', 'background'], + }, + }, + }, + }, + divider: { + lightest: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/divider.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorDividerLightest', + attributes: { + category: 'color', + type: 'divider', + item: 'lightest', + }, + path: ['color', 'divider', 'lightest'], + }, + light: { + value: '#b3b3b3', + filePath: 'packages/tokens/properties/color/divider.json', + isSource: true, + original: { + value: '{color.grey.300.value}', + }, + name: 'ColorDividerLight', + attributes: { + category: 'color', + type: 'divider', + item: 'light', + }, + path: ['color', 'divider', 'light'], + }, + default: { + value: '#666666', + filePath: 'packages/tokens/properties/color/divider.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorDividerDefault', + attributes: { + category: 'color', + type: 'divider', + item: 'default', + }, + path: ['color', 'divider', 'default'], + }, + dark: { + value: '#000000', + filePath: 'packages/tokens/properties/color/divider.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorDividerDark', + attributes: { + category: 'color', + type: 'divider', + item: 'dark', + }, + path: ['color', 'divider', 'dark'], + }, + }, + fields: { + error: { + value: '#c61112', + filePath: 'packages/tokens/properties/color/fields.json', + isSource: true, + original: { + value: '{color.font.danger.value}', + }, + name: 'ColorFieldsError', + attributes: { + category: 'color', + type: 'fields', + item: 'error', + }, + path: ['color', 'fields', 'error'], + }, + label: { + value: '#333333', + filePath: 'packages/tokens/properties/color/fields.json', + isSource: true, + original: { + value: '{color.font.dark.value}', + }, + name: 'ColorFieldsLabel', + attributes: { + category: 'color', + type: 'fields', + item: 'label', + }, + path: ['color', 'fields', 'label'], + }, + requirement: { + value: '#666666', + filePath: 'packages/tokens/properties/color/fields.json', + isSource: true, + original: { + value: '{color.font.light.value}', + }, + name: 'ColorFieldsRequirement', + attributes: { + category: 'color', + type: 'fields', + item: 'requirement', + }, + path: ['color', 'fields', 'requirement'], + }, + help: { + value: '#666666', + filePath: 'packages/tokens/properties/color/fields.json', + isSource: true, + original: { + value: '{color.font.light.value}', + }, + name: 'ColorFieldsHelp', + attributes: { + category: 'color', + type: 'fields', + item: 'help', + }, + path: ['color', 'fields', 'help'], + }, + }, + fileuploader: { + font: { + value: '#000000', + filePath: 'packages/tokens/properties/color/fileuploder.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFileuploaderFont', + attributes: { + category: 'color', + type: 'fileuploader', + item: 'font', + }, + path: ['color', 'fileuploader', 'font'], + }, + files: { + list: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/fileuploder.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorFileuploaderFilesList', + attributes: { + category: 'color', + type: 'fileuploader', + item: 'files', + subitem: 'list', + }, + path: ['color', 'fileuploader', 'files', 'list'], + }, + delete: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/fileuploder.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorFileuploaderFilesDelete', + attributes: { + category: 'color', + type: 'fileuploader', + item: 'files', + subitem: 'delete', + }, + path: ['color', 'fileuploader', 'files', 'delete'], + }, + }, + valid: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/fileuploder.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorFileuploaderValid', + attributes: { + category: 'color', + type: 'fileuploader', + item: 'valid', + }, + path: ['color', 'fileuploader', 'valid'], + }, + alert: { + value: '#c61112', + filePath: 'packages/tokens/properties/color/fileuploder.json', + isSource: true, + original: { + value: '{color.danger.600.value}', + }, + name: 'ColorFileuploaderAlert', + attributes: { + category: 'color', + type: 'fileuploader', + item: 'alert', + }, + path: ['color', 'fileuploader', 'alert'], + }, + }, + flag: { + solid: { + background: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorFlagSolidBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'solid', + subitem: 'background', + }, + path: ['color', 'flag', 'solid', 'background'], + }, + border: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorFlagSolidBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'solid', + subitem: 'border', + }, + path: ['color', 'flag', 'solid', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagSolidText', + attributes: { + category: 'color', + type: 'flag', + item: 'solid', + subitem: 'text', + }, + path: ['color', 'flag', 'solid', 'text'], + }, + }, + 'solid-primary-02': { + background: { + value: '#4b4a8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-purple.600.value}', + }, + name: 'ColorFlagSolidPrimary02Background', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-primary-02', + subitem: 'background', + }, + path: ['color', 'flag', 'solid-primary-02', 'background'], + }, + border: { + value: '#4b4a8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-purple.600.value}', + }, + name: 'ColorFlagSolidPrimary02Border', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-primary-02', + subitem: 'border', + }, + path: ['color', 'flag', 'solid-primary-02', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagSolidPrimary02Text', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-primary-02', + subitem: 'text', + }, + path: ['color', 'flag', 'solid-primary-02', 'text'], + }, + }, + 'solid-dark': { + background: { + value: '#000000', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFlagSolidDarkBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-dark', + subitem: 'background', + }, + path: ['color', 'flag', 'solid-dark', 'background'], + }, + border: { + value: '#000000', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFlagSolidDarkBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-dark', + subitem: 'border', + }, + path: ['color', 'flag', 'solid-dark', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagSolidDarkText', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-dark', + subitem: 'text', + }, + path: ['color', 'flag', 'solid-dark', 'text'], + }, + }, + 'solid-light': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagSolidLightBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-light', + subitem: 'background', + }, + path: ['color', 'flag', 'solid-light', 'background'], + }, + border: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagSolidLightBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-light', + subitem: 'border', + }, + path: ['color', 'flag', 'solid-light', 'border'], + }, + text: { + value: '#000000', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFlagSolidLightText', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-light', + subitem: 'text', + }, + path: ['color', 'flag', 'solid-light', 'text'], + }, + }, + 'solid-danger': { + background: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorFlagSolidDangerBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-danger', + subitem: 'background', + }, + path: ['color', 'flag', 'solid-danger', 'background'], + }, + border: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorFlagSolidDangerBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-danger', + subitem: 'border', + }, + path: ['color', 'flag', 'solid-danger', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagSolidDangerText', + attributes: { + category: 'color', + type: 'flag', + item: 'solid-danger', + subitem: 'text', + }, + path: ['color', 'flag', 'solid-danger', 'text'], + }, + }, + bordered: { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagBorderedBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered', + subitem: 'background', + }, + path: ['color', 'flag', 'bordered', 'background'], + }, + border: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorFlagBorderedBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered', + subitem: 'border', + }, + path: ['color', 'flag', 'bordered', 'border'], + }, + text: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorFlagBorderedText', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered', + subitem: 'text', + }, + path: ['color', 'flag', 'bordered', 'text'], + }, + }, + 'bordered-primary-02': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagBorderedPrimary02Background', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-primary-02', + subitem: 'background', + }, + path: ['color', 'flag', 'bordered-primary-02', 'background'], + }, + border: { + value: '#4b4a8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-purple.600.value}', + }, + name: 'ColorFlagBorderedPrimary02Border', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-primary-02', + subitem: 'border', + }, + path: ['color', 'flag', 'bordered-primary-02', 'border'], + }, + text: { + value: '#4b4a8c', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-purple.600.value}', + }, + name: 'ColorFlagBorderedPrimary02Text', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-primary-02', + subitem: 'text', + }, + path: ['color', 'flag', 'bordered-primary-02', 'text'], + }, + }, + 'bordered-dark': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagBorderedDarkBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-dark', + subitem: 'background', + }, + path: ['color', 'flag', 'bordered-dark', 'background'], + }, + border: { + value: '#000000', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFlagBorderedDarkBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-dark', + subitem: 'border', + }, + path: ['color', 'flag', 'bordered-dark', 'border'], + }, + text: { + value: '#000000', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFlagBorderedDarkText', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-dark', + subitem: 'text', + }, + path: ['color', 'flag', 'bordered-dark', 'text'], + }, + }, + 'bordered-light': { + background: { + value: '#000000', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFlagBorderedLightBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-light', + subitem: 'background', + }, + path: ['color', 'flag', 'bordered-light', 'background'], + }, + border: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagBorderedLightBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-light', + subitem: 'border', + }, + path: ['color', 'flag', 'bordered-light', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagBorderedLightText', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-light', + subitem: 'text', + }, + path: ['color', 'flag', 'bordered-light', 'text'], + }, + }, + 'bordered-danger': { + background: { + value: '#ffffff', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFlagBorderedDangerBackground', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-danger', + subitem: 'background', + }, + path: ['color', 'flag', 'bordered-danger', 'background'], + }, + border: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorFlagBorderedDangerBorder', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-danger', + subitem: 'border', + }, + path: ['color', 'flag', 'bordered-danger', 'border'], + }, + text: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/flag.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorFlagBorderedDangerText', + attributes: { + category: 'color', + type: 'flag', + item: 'bordered-danger', + subitem: 'text', + }, + path: ['color', 'flag', 'bordered-danger', 'text'], + }, + }, + }, + focus: { + gap: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/focus.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFocusGap', + attributes: { + category: 'color', + type: 'focus', + item: 'gap', + }, + path: ['color', 'focus', 'gap'], + }, + border: { + value: '#758992', + filePath: 'packages/tokens/properties/color/focus.json', + isSource: true, + original: { + value: '{color.secondary-blue.500.value}', + }, + name: 'ColorFocusBorder', + attributes: { + category: 'color', + type: 'focus', + item: 'border', + }, + path: ['color', 'focus', 'border'], + }, + }, + font: { + 'primary-01': { + value: '#00919f', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorFontPrimary01', + attributes: { + category: 'color', + type: 'font', + item: 'primary-01', + }, + path: ['color', 'font', 'primary-01'], + }, + 'primary-02': { + value: '#6a7081', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.primary-02.500.value}', + }, + name: 'ColorFontPrimary02', + attributes: { + category: 'color', + type: 'font', + item: 'primary-02', + }, + path: ['color', 'font', 'primary-02'], + }, + darkest: { + value: '#000000', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorFontDarkest', + attributes: { + category: 'color', + type: 'font', + item: 'darkest', + }, + path: ['color', 'font', 'darkest'], + }, + darker: { + value: '#191919', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorFontDarker', + attributes: { + category: 'color', + type: 'font', + item: 'darker', + }, + path: ['color', 'font', 'darker'], + }, + dark: { + value: '#333333', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorFontDark', + attributes: { + category: 'color', + type: 'font', + item: 'dark', + }, + path: ['color', 'font', 'dark'], + }, + light: { + value: '#666666', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorFontLight', + attributes: { + category: 'color', + type: 'font', + item: 'light', + }, + path: ['color', 'font', 'light'], + }, + lightest: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorFontLightest', + attributes: { + category: 'color', + type: 'font', + item: 'lightest', + }, + path: ['color', 'font', 'lightest'], + }, + info: { + value: '#007bb4', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.info.600.value}', + }, + name: 'ColorFontInfo', + attributes: { + category: 'color', + type: 'font', + item: 'info', + }, + path: ['color', 'font', 'info'], + }, + success: { + value: '#188803', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.success.600.value}', + }, + name: 'ColorFontSuccess', + attributes: { + category: 'color', + type: 'font', + item: 'success', + }, + path: ['color', 'font', 'success'], + }, + warning: { + value: '#c65200', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.warning.600.value}', + }, + name: 'ColorFontWarning', + attributes: { + category: 'color', + type: 'font', + item: 'warning', + }, + path: ['color', 'font', 'warning'], + }, + danger: { + value: '#c61112', + filePath: 'packages/tokens/properties/color/font.json', + isSource: true, + original: { + value: '{color.danger.600.value}', + }, + name: 'ColorFontDanger', + attributes: { + category: 'color', + type: 'font', + item: 'danger', + }, + path: ['color', 'font', 'danger'], + }, + }, + input: { + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorInputText', + attributes: { + category: 'color', + type: 'input', + item: 'text', + }, + path: ['color', 'input', 'text'], + }, + border: { + value: '#666666', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorInputBorder', + attributes: { + category: 'color', + type: 'input', + item: 'border', + }, + path: ['color', 'input', 'border'], + }, + placeholder: { + value: '#808080', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorInputPlaceholder', + attributes: { + category: 'color', + type: 'input', + item: 'placeholder', + }, + path: ['color', 'input', 'placeholder'], + }, + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorInputBackground', + attributes: { + category: 'color', + type: 'input', + item: 'background', + }, + path: ['color', 'input', 'background'], + }, + disabled: { + border: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorInputDisabledBorder', + attributes: { + category: 'color', + type: 'input', + item: 'disabled', + subitem: 'border', + }, + path: ['color', 'input', 'disabled', 'border'], + }, + background: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorInputDisabledBackground', + attributes: { + category: 'color', + type: 'input', + item: 'disabled', + subitem: 'background', + }, + path: ['color', 'input', 'disabled', 'background'], + }, + icon: { + value: '#999999', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.400.value}', + }, + name: 'ColorInputDisabledIcon', + attributes: { + category: 'color', + type: 'input', + item: 'disabled', + subitem: 'icon', + }, + path: ['color', 'input', 'disabled', 'icon'], + }, + }, + hover: { + border: { + value: '#191919', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorInputHoverBorder', + attributes: { + category: 'color', + type: 'input', + item: 'hover', + subitem: 'border', + }, + path: ['color', 'input', 'hover', 'border'], + }, + }, + focus: { + border: { + value: '#758992', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.secondary-blue.500.value}', + }, + name: 'ColorInputFocusBorder', + attributes: { + category: 'color', + type: 'input', + item: 'focus', + subitem: 'border', + }, + path: ['color', 'input', 'focus', 'border'], + }, + }, + valid: { + border: { + value: '#46a610', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.success.500.value}', + }, + name: 'ColorInputValidBorder', + attributes: { + category: 'color', + type: 'input', + item: 'valid', + subitem: 'border', + }, + path: ['color', 'input', 'valid', 'border'], + }, + hover: { + border: { + value: '#035010', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.success.800.value}', + }, + name: 'ColorInputValidHoverBorder', + attributes: { + category: 'color', + type: 'input', + item: 'valid', + subitem: 'hover', + state: 'border', + }, + path: ['color', 'input', 'valid', 'hover', 'border'], + }, + }, + }, + invalid: { + border: { + value: '#c61112', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.danger.600.value}', + }, + name: 'ColorInputInvalidBorder', + attributes: { + category: 'color', + type: 'input', + item: 'invalid', + subitem: 'border', + }, + path: ['color', 'input', 'invalid', 'border'], + }, + hover: { + border: { + value: '#530000', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.danger.800.value}', + }, + name: 'ColorInputInvalidHoverBorder', + attributes: { + category: 'color', + type: 'input', + item: 'invalid', + subitem: 'hover', + state: 'border', + }, + path: ['color', 'input', 'invalid', 'hover', 'border'], + }, + }, + }, + checked: { + border: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorInputCheckedBorder', + attributes: { + category: 'color', + type: 'input', + item: 'checked', + subitem: 'border', + }, + path: ['color', 'input', 'checked', 'border'], + }, + background: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorInputCheckedBackground', + attributes: { + category: 'color', + type: 'input', + item: 'checked', + subitem: 'background', + }, + path: ['color', 'input', 'checked', 'background'], + }, + icon: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorInputCheckedIcon', + attributes: { + category: 'color', + type: 'input', + item: 'checked', + subitem: 'icon', + }, + path: ['color', 'input', 'checked', 'icon'], + }, + hover: { + border: { + value: '#004e57', + filePath: 'packages/tokens/properties/color/input.json', + isSource: true, + original: { + value: '{color.primary-01.800.value}', + }, + name: 'ColorInputCheckedHoverBorder', + attributes: { + category: 'color', + type: 'input', + item: 'checked', + subitem: 'hover', + state: 'border', + }, + path: ['color', 'input', 'checked', 'hover', 'border'], + }, + }, + }, + }, + link: { + dark: { + base: { + value: '#000000', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorLinkDarkBase', + attributes: { + category: 'color', + type: 'link', + item: 'dark', + subitem: 'base', + }, + path: ['color', 'link', 'dark', 'base'], + }, + visited: { + value: '#333333', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorLinkDarkVisited', + attributes: { + category: 'color', + type: 'link', + item: 'dark', + subitem: 'visited', + }, + path: ['color', 'link', 'dark', 'visited'], + }, + active: { + value: '#333333', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorLinkDarkActive', + attributes: { + category: 'color', + type: 'link', + item: 'dark', + subitem: 'active', + }, + path: ['color', 'link', 'dark', 'active'], + }, + disabled: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorLinkDarkDisabled', + attributes: { + category: 'color', + type: 'link', + item: 'dark', + subitem: 'disabled', + }, + path: ['color', 'link', 'dark', 'disabled'], + }, + hover: { + value: '#666666', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorLinkDarkHover', + attributes: { + category: 'color', + type: 'link', + item: 'dark', + subitem: 'hover', + }, + path: ['color', 'link', 'dark', 'hover'], + }, + }, + light: { + base: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorLinkLightBase', + attributes: { + category: 'color', + type: 'link', + item: 'light', + subitem: 'base', + }, + path: ['color', 'link', 'light', 'base'], + }, + visited: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorLinkLightVisited', + attributes: { + category: 'color', + type: 'link', + item: 'light', + subitem: 'visited', + }, + path: ['color', 'link', 'light', 'visited'], + }, + active: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorLinkLightActive', + attributes: { + category: 'color', + type: 'link', + item: 'light', + subitem: 'active', + }, + path: ['color', 'link', 'light', 'active'], + }, + disabled: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorLinkLightDisabled', + attributes: { + category: 'color', + type: 'link', + item: 'light', + subitem: 'disabled', + }, + path: ['color', 'link', 'light', 'disabled'], + }, + hover: { + value: '#999999', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.400.value}', + }, + name: 'ColorLinkLightHover', + attributes: { + category: 'color', + type: 'link', + item: 'light', + subitem: 'hover', + }, + path: ['color', 'link', 'light', 'hover'], + }, + }, + primary: { + base: { + value: '#007f8c', + filePath: 'packages/tokens/AdeoProperties/color/link.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorLinkPrimaryBase', + attributes: { + category: 'color', + type: 'link', + item: 'primary', + subitem: 'base', + }, + path: ['color', 'link', 'primary', 'base'], + }, + visited: { + value: '#006974', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorLinkPrimaryVisited', + attributes: { + category: 'color', + type: 'link', + item: 'primary', + subitem: 'visited', + }, + path: ['color', 'link', 'primary', 'visited'], + }, + active: { + value: '#006974', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorLinkPrimaryActive', + attributes: { + category: 'color', + type: 'link', + item: 'primary', + subitem: 'active', + }, + path: ['color', 'link', 'primary', 'active'], + }, + disabled: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorLinkPrimaryDisabled', + attributes: { + category: 'color', + type: 'link', + item: 'primary', + subitem: 'disabled', + }, + path: ['color', 'link', 'primary', 'disabled'], + }, + hover: { + value: '#002e33', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-01.900.value}', + }, + name: 'ColorLinkPrimaryHover', + attributes: { + category: 'color', + type: 'link', + item: 'primary', + subitem: 'hover', + }, + path: ['color', 'link', 'primary', 'hover'], + }, + }, + 'primary-02': { + base: { + value: '#494f60', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-02.600.value}', + }, + name: 'ColorLinkPrimary02Base', + attributes: { + category: 'color', + type: 'link', + item: 'primary-02', + subitem: 'base', + }, + path: ['color', 'link', 'primary-02', 'base'], + }, + visited: { + value: '#343b4c', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-02.700.value}', + }, + name: 'ColorLinkPrimary02Visited', + attributes: { + category: 'color', + type: 'link', + item: 'primary-02', + subitem: 'visited', + }, + path: ['color', 'link', 'primary-02', 'visited'], + }, + active: { + value: '#343b4c', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-02.700.value}', + }, + name: 'ColorLinkPrimary02Active', + attributes: { + category: 'color', + type: 'link', + item: 'primary-02', + subitem: 'active', + }, + path: ['color', 'link', 'primary-02', 'active'], + }, + disabled: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorLinkPrimary02Disabled', + attributes: { + category: 'color', + type: 'link', + item: 'primary-02', + subitem: 'disabled', + }, + path: ['color', 'link', 'primary-02', 'disabled'], + }, + hover: { + value: '#171b26', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.primary-02.900.value}', + }, + name: 'ColorLinkPrimary02Hover', + attributes: { + category: 'color', + type: 'link', + item: 'primary-02', + subitem: 'hover', + }, + path: ['color', 'link', 'primary-02', 'hover'], + }, + }, + danger: { + base: { + value: '#b42a27', + filePath: 'packages/tokens/AdeoProperties/color/link.json', + isSource: true, + original: { + value: '{color.secondary-red.600.value}', + }, + name: 'ColorLinkDangerBase', + attributes: { + category: 'color', + type: 'link', + item: 'danger', + subitem: 'base', + }, + path: ['color', 'link', 'danger', 'base'], + }, + visited: { + value: '#8b2226', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.secondary-red.700.value}', + }, + name: 'ColorLinkDangerVisited', + attributes: { + category: 'color', + type: 'link', + item: 'danger', + subitem: 'visited', + }, + path: ['color', 'link', 'danger', 'visited'], + }, + active: { + value: '#8b2226', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.secondary-red.700.value}', + }, + name: 'ColorLinkDangerActive', + attributes: { + category: 'color', + type: 'link', + item: 'danger', + subitem: 'active', + }, + path: ['color', 'link', 'danger', 'active'], + }, + disabled: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorLinkDangerDisabled', + attributes: { + category: 'color', + type: 'link', + item: 'danger', + subitem: 'disabled', + }, + path: ['color', 'link', 'danger', 'disabled'], + }, + hover: { + value: '#3e1219', + filePath: 'packages/tokens/properties/color/link.json', + isSource: true, + original: { + value: '{color.secondary-red.900.value}', + }, + name: 'ColorLinkDangerHover', + attributes: { + category: 'color', + type: 'link', + item: 'danger', + subitem: 'hover', + }, + path: ['color', 'link', 'danger', 'hover'], + }, + }, + }, + notification: { + font: { + value: '#000000', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorNotificationFont', + attributes: { + category: 'color', + type: 'notification', + item: 'font', + }, + path: ['color', 'notification', 'font'], + }, + information: { + background: { + value: '#daeff7', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.info.100.value}', + }, + name: 'ColorNotificationInformationBackground', + attributes: { + category: 'color', + type: 'notification', + item: 'information', + subitem: 'background', + }, + path: ['color', 'notification', 'information', 'background'], + }, + border: { + value: '#0b96cc', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.info.500.value}', + }, + name: 'ColorNotificationInformationBorder', + attributes: { + category: 'color', + type: 'notification', + item: 'information', + subitem: 'border', + }, + path: ['color', 'notification', 'information', 'border'], + }, + }, + success: { + background: { + value: '#ebf5de', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.success.100.value}', + }, + name: 'ColorNotificationSuccessBackground', + attributes: { + category: 'color', + type: 'notification', + item: 'success', + subitem: 'background', + }, + path: ['color', 'notification', 'success', 'background'], + }, + border: { + value: '#46a610', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.success.500.value}', + }, + name: 'ColorNotificationSuccessBorder', + attributes: { + category: 'color', + type: 'notification', + item: 'success', + subitem: 'border', + }, + path: ['color', 'notification', 'success', 'border'], + }, + }, + warning: { + background: { + value: '#fdf1e8', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.warning.100.value}', + }, + name: 'ColorNotificationWarningBackground', + attributes: { + category: 'color', + type: 'notification', + item: 'warning', + subitem: 'background', + }, + path: ['color', 'notification', 'warning', 'background'], + }, + border: { + value: '#ea7315', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.warning.500.value}', + }, + name: 'ColorNotificationWarningBorder', + attributes: { + category: 'color', + type: 'notification', + item: 'warning', + subitem: 'border', + }, + path: ['color', 'notification', 'warning', 'border'], + }, + }, + danger: { + background: { + value: '#fdeaea', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.danger.100.value}', + }, + name: 'ColorNotificationDangerBackground', + attributes: { + category: 'color', + type: 'notification', + item: 'danger', + subitem: 'background', + }, + path: ['color', 'notification', 'danger', 'background'], + }, + border: { + value: '#ea302d', + filePath: 'packages/tokens/properties/color/notification.json', + isSource: true, + original: { + value: '{color.danger.500.value}', + }, + name: 'ColorNotificationDangerBorder', + attributes: { + category: 'color', + type: 'notification', + item: 'danger', + subitem: 'border', + }, + path: ['color', 'notification', 'danger', 'border'], + }, + }, + }, + progress: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/progressbar.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorProgressBackground', + attributes: { + category: 'color', + type: 'progress', + item: 'background', + }, + path: ['color', 'progress', 'background'], + }, + indicator: { + value: '#007bb4', + filePath: 'packages/tokens/properties/color/progressbar.json', + isSource: true, + original: { + value: '{color.info.600.value}', + }, + name: 'ColorProgressIndicator', + attributes: { + category: 'color', + type: 'progress', + item: 'indicator', + }, + path: ['color', 'progress', 'indicator'], + }, + percentage: { + default: { + value: '#191919', + filePath: 'packages/tokens/properties/color/progressbar.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorProgressPercentageDefault', + attributes: { + category: 'color', + type: 'progress', + item: 'percentage', + subitem: 'default', + }, + path: ['color', 'progress', 'percentage', 'default'], + }, + half: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/progressbar.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorProgressPercentageHalf', + attributes: { + category: 'color', + type: 'progress', + item: 'percentage', + subitem: 'half', + }, + path: ['color', 'progress', 'percentage', 'half'], + }, + }, + branded: { + indicator: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/progressbar.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorProgressBrandedIndicator', + attributes: { + category: 'color', + type: 'progress', + item: 'branded', + subitem: 'indicator', + }, + path: ['color', 'progress', 'branded', 'indicator'], + }, + }, + }, + star: { + empty: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/star.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorStarEmpty', + attributes: { + category: 'color', + type: 'star', + item: 'empty', + }, + path: ['color', 'star', 'empty'], + }, + focus: { + value: '#758992', + filePath: 'packages/tokens/properties/color/star.json', + isSource: true, + original: { + value: '{color.secondary-blue.500.value}', + }, + name: 'ColorStarFocus', + attributes: { + category: 'color', + type: 'star', + item: 'focus', + }, + path: ['color', 'star', 'focus'], + }, + full: { + value: '#fc961e', + filePath: 'packages/tokens/properties/color/star.json', + isSource: true, + original: { + value: '{color.secondary-orange.500.value}', + }, + name: 'ColorStarFull', + attributes: { + category: 'color', + type: 'star', + item: 'full', + }, + path: ['color', 'star', 'full'], + }, + hover: { + value: '#ffc17d', + filePath: 'packages/tokens/properties/color/star.json', + isSource: true, + original: { + value: '{color.secondary-orange.300.value}', + }, + name: 'ColorStarHover', + attributes: { + category: 'color', + type: 'star', + item: 'hover', + }, + path: ['color', 'star', 'hover'], + }, + }, + tabs: { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTabsBackground', + attributes: { + category: 'color', + type: 'tabs', + item: 'background', + }, + path: ['color', 'tabs', 'background'], + }, + shadow: { + value: '#000000', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.grey.999.value}', + }, + name: 'ColorTabsShadow', + attributes: { + category: 'color', + type: 'tabs', + item: 'shadow', + }, + path: ['color', 'tabs', 'shadow'], + }, + default: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.font.darker.value}', + }, + name: 'ColorTabsDefault', + attributes: { + category: 'color', + type: 'tabs', + item: 'default', + }, + path: ['color', 'tabs', 'default'], + }, + hover: { + value: '#007f8c', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorTabsHover', + attributes: { + category: 'color', + type: 'tabs', + item: 'hover', + }, + path: ['color', 'tabs', 'hover'], + }, + disabled: { + value: '#666666', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.font.light.value}', + }, + name: 'ColorTabsDisabled', + attributes: { + category: 'color', + type: 'tabs', + item: 'disabled', + }, + path: ['color', 'tabs', 'disabled'], + }, + active: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.font.primary-01.value}', + }, + name: 'ColorTabsActive', + attributes: { + category: 'color', + type: 'tabs', + item: 'active', + }, + path: ['color', 'tabs', 'active'], + }, + 'active-disabled': { + value: '#91d5db', + filePath: 'packages/tokens/properties/color/tabs.json', + isSource: true, + original: { + value: '{color.primary-01.200.value}', + }, + name: 'ColorTabsActiveDisabled', + attributes: { + category: 'color', + type: 'tabs', + item: 'active-disabled', + }, + path: ['color', 'tabs', 'active-disabled'], + }, + }, + tag: { + text: { + light: { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagTextLightBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'text', + subitem: 'light', + state: 'background', + }, + path: ['color', 'tag', 'text', 'light', 'background'], + }, + border: { + value: '#808080', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorTagTextLightBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'text', + subitem: 'light', + state: 'border', + }, + path: ['color', 'tag', 'text', 'light', 'border'], + }, + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagTextLightText', + attributes: { + category: 'color', + type: 'tag', + item: 'text', + subitem: 'light', + state: 'text', + }, + path: ['color', 'tag', 'text', 'light', 'text'], + }, + }, + dark: { + background: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagTextDarkBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'text', + subitem: 'dark', + state: 'background', + }, + path: ['color', 'tag', 'text', 'dark', 'background'], + }, + border: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagTextDarkBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'text', + subitem: 'dark', + state: 'border', + }, + path: ['color', 'tag', 'text', 'dark', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagTextDarkText', + attributes: { + category: 'color', + type: 'tag', + item: 'text', + subitem: 'dark', + state: 'text', + }, + path: ['color', 'tag', 'text', 'dark', 'text'], + }, + }, + }, + link: { + light: { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagLinkLightBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'light', + state: 'background', + }, + path: ['color', 'tag', 'link', 'light', 'background'], + }, + border: { + value: '#808080', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorTagLinkLightBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'light', + state: 'border', + }, + path: ['color', 'tag', 'link', 'light', 'border'], + }, + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagLinkLightText', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'light', + state: 'text', + }, + path: ['color', 'tag', 'link', 'light', 'text'], + }, + hover: { + background: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorTagLinkLightHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'light', + state: 'hover', + }, + path: ['color', 'tag', 'link', 'light', 'hover', 'background'], + }, + }, + active: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorTagLinkLightActiveBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'light', + state: 'active', + }, + path: ['color', 'tag', 'link', 'light', 'active', 'background'], + }, + }, + }, + dark: { + background: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagLinkDarkBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'dark', + state: 'background', + }, + path: ['color', 'tag', 'link', 'dark', 'background'], + }, + border: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagLinkDarkBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'dark', + state: 'border', + }, + path: ['color', 'tag', 'link', 'dark', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagLinkDarkText', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'dark', + state: 'text', + }, + path: ['color', 'tag', 'link', 'dark', 'text'], + }, + hover: { + background: { + value: '#333333', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorTagLinkDarkHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'dark', + state: 'hover', + }, + path: ['color', 'tag', 'link', 'dark', 'hover', 'background'], + }, + }, + active: { + background: { + value: '#4d4d4d', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.700.value}', + }, + name: 'ColorTagLinkDarkActiveBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'link', + subitem: 'dark', + state: 'active', + }, + path: ['color', 'tag', 'link', 'dark', 'active', 'background'], + }, + }, + }, + }, + selectable: { + light: { + background: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagSelectableLightBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'background', + }, + path: ['color', 'tag', 'selectable', 'light', 'background'], + }, + border: { + value: '#808080', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorTagSelectableLightBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'border', + }, + path: ['color', 'tag', 'selectable', 'light', 'border'], + }, + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagSelectableLightText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'text', + }, + path: ['color', 'tag', 'selectable', 'light', 'text'], + }, + hover: { + background: { + value: '#48bac4', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.300.value}', + }, + name: 'ColorTagSelectableLightHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'hover', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'light', + 'hover', + 'background', + ], + }, + }, + active: { + background: { + value: '#004e57', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.800.value}', + }, + name: 'ColorTagSelectableLightActiveBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'active', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'light', + 'active', + 'background', + ], + }, + border: { + value: '#004e57', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.800.value}', + }, + name: 'ColorTagSelectableLightActiveBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'active', + }, + path: ['color', 'tag', 'selectable', 'light', 'active', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagSelectableLightActiveText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'active', + }, + path: ['color', 'tag', 'selectable', 'light', 'active', 'text'], + }, + }, + disabled: { + background: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorTagSelectableLightDisabledBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'disabled', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'light', + 'disabled', + 'background', + ], + }, + text: { + value: '#808080', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorTagSelectableLightDisabledText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'disabled', + }, + path: ['color', 'tag', 'selectable', 'light', 'disabled', 'text'], + }, + }, + selected: { + background: { + value: '#007f8c', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.600.value}', + }, + name: 'ColorTagSelectableLightSelectedBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'selected', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'light', + 'selected', + 'background', + ], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagSelectableLightSelectedText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'selected', + }, + path: ['color', 'tag', 'selectable', 'light', 'selected', 'text'], + }, + hover: { + background: { + value: '#006974', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorTagSelectableLightSelectedHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'light', + state: 'selected', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'light', + 'selected', + 'hover', + 'background', + ], + }, + }, + }, + }, + dark: { + background: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagSelectableDarkBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'background', + }, + path: ['color', 'tag', 'selectable', 'dark', 'background'], + }, + border: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagSelectableDarkBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'border', + }, + path: ['color', 'tag', 'selectable', 'dark', 'border'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagSelectableDarkText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'text', + }, + path: ['color', 'tag', 'selectable', 'dark', 'text'], + }, + hover: { + background: { + value: '#006974', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.700.value}', + }, + name: 'ColorTagSelectableDarkHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'hover', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'dark', + 'hover', + 'background', + ], + }, + }, + active: { + background: { + value: '#91d5db', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.200.value}', + }, + name: 'ColorTagSelectableDarkActiveBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'active', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'dark', + 'active', + 'background', + ], + }, + border: { + value: '#91d5db', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.200.value}', + }, + name: 'ColorTagSelectableDarkActiveBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'active', + }, + path: ['color', 'tag', 'selectable', 'dark', 'active', 'border'], + }, + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagSelectableDarkActiveText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'active', + }, + path: ['color', 'tag', 'selectable', 'dark', 'active', 'text'], + }, + }, + selected: { + background: { + value: '#009eac', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.400.value}', + }, + name: 'ColorTagSelectableDarkSelectedBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'selected', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'dark', + 'selected', + 'background', + ], + }, + border: { + value: '#009eac', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.400.value}', + }, + name: 'ColorTagSelectableDarkSelectedBorder', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'selected', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'dark', + 'selected', + 'border', + ], + }, + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagSelectableDarkSelectedText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'selected', + }, + path: ['color', 'tag', 'selectable', 'dark', 'selected', 'text'], + }, + hover: { + background: { + value: '#48bac4', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.primary-01.300.value}', + }, + name: 'ColorTagSelectableDarkSelectedHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'selected', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'dark', + 'selected', + 'hover', + 'background', + ], + }, + }, + }, + disabled: { + background: { + value: '#4d4d4d', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.700.value}', + }, + name: 'ColorTagSelectableDarkDisabledBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'disabled', + }, + path: [ + 'color', + 'tag', + 'selectable', + 'dark', + 'disabled', + 'background', + ], + }, + text: { + value: '#808080', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.500.value}', + }, + name: 'ColorTagSelectableDarkDisabledText', + attributes: { + category: 'color', + type: 'tag', + item: 'selectable', + subitem: 'dark', + state: 'disabled', + }, + path: ['color', 'tag', 'selectable', 'dark', 'disabled', 'text'], + }, + }, + }, + }, + removable: { + light: { + background: { + value: '#333333', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.800.value}', + }, + name: 'ColorTagRemovableLightBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'light', + state: 'background', + }, + path: ['color', 'tag', 'removable', 'light', 'background'], + }, + text: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorTagRemovableLightText', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'light', + state: 'text', + }, + path: ['color', 'tag', 'removable', 'light', 'text'], + }, + icon: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorTagRemovableLightIcon', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'light', + state: 'icon', + }, + path: ['color', 'tag', 'removable', 'light', 'icon'], + }, + hover: { + background: { + value: '#4d4d4d', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.700.value}', + }, + name: 'ColorTagRemovableLightHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'light', + state: 'hover', + }, + path: [ + 'color', + 'tag', + 'removable', + 'light', + 'hover', + 'background', + ], + }, + }, + active: { + background: { + value: '#666666', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorTagRemovableLightActiveBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'light', + state: 'active', + }, + path: [ + 'color', + 'tag', + 'removable', + 'light', + 'active', + 'background', + ], + }, + }, + }, + dark: { + background: { + value: '#cccccc', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.200.value}', + }, + name: 'ColorTagRemovableDarkBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'dark', + state: 'background', + }, + path: ['color', 'tag', 'removable', 'dark', 'background'], + }, + text: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagRemovableDarkText', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'dark', + state: 'text', + }, + path: ['color', 'tag', 'removable', 'dark', 'text'], + }, + icon: { + value: '#191919', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.900.value}', + }, + name: 'ColorTagRemovableDarkIcon', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'dark', + state: 'icon', + }, + path: ['color', 'tag', 'removable', 'dark', 'icon'], + }, + hover: { + background: { + value: '#b3b3b3', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.300.value}', + }, + name: 'ColorTagRemovableDarkHoverBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'dark', + state: 'hover', + }, + path: [ + 'color', + 'tag', + 'removable', + 'dark', + 'hover', + 'background', + ], + }, + }, + active: { + background: { + value: '#999999', + filePath: 'packages/tokens/properties/color/tag.json', + isSource: true, + original: { + value: '{color.grey.400.value}', + }, + name: 'ColorTagRemovableDarkActiveBackground', + attributes: { + category: 'color', + type: 'tag', + item: 'removable', + subitem: 'dark', + state: 'active', + }, + path: [ + 'color', + 'tag', + 'removable', + 'dark', + 'active', + 'background', + ], + }, + }, + }, + }, + }, + toggle: { + off: { + background: { + value: '#666666', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.600.value}', + }, + name: 'ColorToggleOffBackground', + attributes: { + category: 'color', + type: 'toggle', + item: 'off', + subitem: 'background', + }, + path: ['color', 'toggle', 'off', 'background'], + }, + circle: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorToggleOffCircle', + attributes: { + category: 'color', + type: 'toggle', + item: 'off', + subitem: 'circle', + }, + path: ['color', 'toggle', 'off', 'circle'], + }, + }, + on: { + background: { + value: '#00919f', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.primary-01.500.value}', + }, + name: 'ColorToggleOnBackground', + attributes: { + category: 'color', + type: 'toggle', + item: 'on', + subitem: 'background', + }, + path: ['color', 'toggle', 'on', 'background'], + }, + circle: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorToggleOnCircle', + attributes: { + category: 'color', + type: 'toggle', + item: 'on', + subitem: 'circle', + }, + path: ['color', 'toggle', 'on', 'circle'], + }, + }, + hover: { + circle: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorToggleHoverCircle', + attributes: { + category: 'color', + type: 'toggle', + item: 'hover', + subitem: 'circle', + }, + path: ['color', 'toggle', 'hover', 'circle'], + }, + }, + disabled: { + background: { + value: '#e6e6e6', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.100.value}', + }, + name: 'ColorToggleDisabledBackground', + attributes: { + category: 'color', + type: 'toggle', + item: 'disabled', + subitem: 'background', + }, + path: ['color', 'toggle', 'disabled', 'background'], + }, + circle: { + value: '#b3b3b3', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.300.value}', + }, + name: 'ColorToggleDisabledCircle', + attributes: { + category: 'color', + type: 'toggle', + item: 'disabled', + subitem: 'circle', + }, + path: ['color', 'toggle', 'disabled', 'circle'], + }, + }, + 'disabled-checked': { + background: { + value: '#91d5db', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.primary-01.200.value}', + }, + name: 'ColorToggleDisabledCheckedBackground', + attributes: { + category: 'color', + type: 'toggle', + item: 'disabled-checked', + subitem: 'background', + }, + path: ['color', 'toggle', 'disabled-checked', 'background'], + }, + circle: { + value: '#ffffff', + filePath: 'packages/tokens/properties/color/toggle.json', + isSource: true, + original: { + value: '{color.grey.000.value}', + }, + name: 'ColorToggleDisabledCheckedCircle', + attributes: { + category: 'color', + type: 'toggle', + item: 'disabled-checked', + subitem: 'circle', + }, + path: ['color', 'toggle', 'disabled-checked', 'circle'], + }, + }, + }, + 'secondary-sandgrey': { + 100: { + value: '#eeedea', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#EEEDEA', + }, + name: 'ColorSecondarySandgrey100', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '100', + }, + path: ['color', 'secondary-sandgrey', '100'], + }, + 200: { + value: '#dddcd5', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#DDDCD5', + }, + name: 'ColorSecondarySandgrey200', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '200', + }, + path: ['color', 'secondary-sandgrey', '200'], + }, + 300: { + value: '#c2c1ba', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#C2C1BA', + }, + name: 'ColorSecondarySandgrey300', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '300', + }, + path: ['color', 'secondary-sandgrey', '300'], + }, + 400: { + value: '#a7a6a0', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#A7A6A0', + }, + name: 'ColorSecondarySandgrey400', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '400', + }, + path: ['color', 'secondary-sandgrey', '400'], + }, + 500: { + value: '#8c8b85', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#8C8B85', + }, + name: 'ColorSecondarySandgrey500', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '500', + }, + path: ['color', 'secondary-sandgrey', '500'], + }, + 600: { + value: '#71706b', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#71706B', + }, + name: 'ColorSecondarySandgrey600', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '600', + }, + path: ['color', 'secondary-sandgrey', '600'], + }, + 700: { + value: '#555550', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#555550', + }, + name: 'ColorSecondarySandgrey700', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '700', + }, + path: ['color', 'secondary-sandgrey', '700'], + }, + 800: { + value: '#3a3936', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#3A3936', + }, + name: 'ColorSecondarySandgrey800', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '800', + }, + path: ['color', 'secondary-sandgrey', '800'], + }, + 900: { + value: '#1e1e1c', + filePath: 'packages/tokens/AdeoProperties/color/base.json', + isSource: true, + original: { + value: '#1E1E1C', + }, + name: 'ColorSecondarySandgrey900', + attributes: { + category: 'color', + type: 'secondary-sandgrey', + item: '900', + }, + path: ['color', 'secondary-sandgrey', '900'], + }, + }, + }, + preset: { + value: 'adeo', + filePath: 'packages/tokens/AdeoProperties/preset.json', + isSource: true, + original: { + value: 'adeo', + }, + name: 'Preset', + attributes: { + category: 'preset', + }, + path: ['preset'], + }, + radius: { + s: { + value: 2, + filePath: 'packages/tokens/properties/radius/base.json', + isSource: true, + original: { + value: 2, + }, + name: 'RadiusS', + attributes: { + category: 'radius', + type: 's', + }, + path: ['radius', 's'], + }, + m: { + value: 4, + filePath: 'packages/tokens/properties/radius/base.json', + isSource: true, + original: { + value: 4, + }, + name: 'RadiusM', + attributes: { + category: 'radius', + type: 'm', + }, + path: ['radius', 'm'], + }, + l: { + value: 6, + filePath: 'packages/tokens/properties/radius/base.json', + isSource: true, + original: { + value: 6, + }, + name: 'RadiusL', + attributes: { + category: 'radius', + type: 'l', + }, + path: ['radius', 'l'], + }, + }, + shadow: { + s: { + x: { + value: '0px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ShadowSX', + attributes: { + category: 'shadow', + type: 's', + item: 'x', + }, + path: ['shadow', 's', 'x'], + }, + y: { + value: '1px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '1px', + }, + name: 'ShadowSY', + attributes: { + category: 'shadow', + type: 's', + item: 'y', + }, + path: ['shadow', 's', 'y'], + }, + blur: { + value: '5px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '5px', + }, + name: 'ShadowSBlur', + attributes: { + category: 'shadow', + type: 's', + item: 'blur', + }, + path: ['shadow', 's', 'blur'], + }, + spread: { + value: '0px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ShadowSSpread', + attributes: { + category: 'shadow', + type: 's', + item: 'spread', + }, + path: ['shadow', 's', 'spread'], + }, + opacity: { + value: '0.2', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0.2', + }, + name: 'ShadowSOpacity', + attributes: { + category: 'shadow', + type: 's', + item: 'opacity', + }, + path: ['shadow', 's', 'opacity'], + }, + }, + m: { + x: { + value: '0px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ShadowMX', + attributes: { + category: 'shadow', + type: 'm', + item: 'x', + }, + path: ['shadow', 'm', 'x'], + }, + y: { + value: '2px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '2px', + }, + name: 'ShadowMY', + attributes: { + category: 'shadow', + type: 'm', + item: 'y', + }, + path: ['shadow', 'm', 'y'], + }, + blur: { + value: '10px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '10px', + }, + name: 'ShadowMBlur', + attributes: { + category: 'shadow', + type: 'm', + item: 'blur', + }, + path: ['shadow', 'm', 'blur'], + }, + spread: { + value: '0px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ShadowMSpread', + attributes: { + category: 'shadow', + type: 'm', + item: 'spread', + }, + path: ['shadow', 'm', 'spread'], + }, + opacity: { + value: '0.2', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0.2', + }, + name: 'ShadowMOpacity', + attributes: { + category: 'shadow', + type: 'm', + item: 'opacity', + }, + path: ['shadow', 'm', 'opacity'], + }, + }, + l: { + x: { + value: '0px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ShadowLX', + attributes: { + category: 'shadow', + type: 'l', + item: 'x', + }, + path: ['shadow', 'l', 'x'], + }, + y: { + value: '4px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '4px', + }, + name: 'ShadowLY', + attributes: { + category: 'shadow', + type: 'l', + item: 'y', + }, + path: ['shadow', 'l', 'y'], + }, + blur: { + value: '20px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '20px', + }, + name: 'ShadowLBlur', + attributes: { + category: 'shadow', + type: 'l', + item: 'blur', + }, + path: ['shadow', 'l', 'blur'], + }, + spread: { + value: '0px', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ShadowLSpread', + attributes: { + category: 'shadow', + type: 'l', + item: 'spread', + }, + path: ['shadow', 'l', 'spread'], + }, + opacity: { + value: '0.2', + filePath: 'packages/tokens/properties/shadow/base.json', + isSource: true, + original: { + value: '0.2', + }, + name: 'ShadowLOpacity', + attributes: { + category: 'shadow', + type: 'l', + item: 'opacity', + }, + path: ['shadow', 'l', 'opacity'], + }, + }, + }, + 'magic-unit': { + value: 1, + filePath: 'packages/tokens/properties/size/base.json', + isSource: true, + original: { + value: 1, + }, + name: 'MagicUnit', + attributes: { + category: 'magic-unit', + }, + path: ['magic-unit'], + }, + 'local-rem-value': { + value: 16, + filePath: 'packages/tokens/properties/size/base.json', + isSource: true, + original: { + value: 16, + }, + name: 'LocalRemValue', + attributes: { + category: 'local-rem-value', + }, + path: ['local-rem-value'], + }, + size: { + font: { + 10: { + value: '2.5625rem', + comment: '41px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.5625, + comment: '41px', + }, + name: 'SizeFont10', + attributes: { + category: 'size', + type: 'font', + item: '10', + }, + path: ['size', 'font', '10'], + }, + 11: { + value: '3.0625rem', + comment: '49px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.0625, + comment: '49px', + }, + name: 'SizeFont11', + attributes: { + category: 'size', + type: 'font', + item: '11', + }, + path: ['size', 'font', '11'], + }, + 12: { + value: '3.6875rem', + comment: '59px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.6875, + comment: '59px', + }, + name: 'SizeFont12', + attributes: { + category: 'size', + type: 'font', + item: '12', + }, + path: ['size', 'font', '12'], + }, + '01': { + value: '0.6815rem', + comment: '11px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.6815, + comment: '11px', + }, + name: 'SizeFont01', + attributes: { + category: 'size', + type: 'font', + item: '01', + }, + path: ['size', 'font', '01'], + }, + '02': { + value: '0.75rem', + comment: '12px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.75, + comment: '12px', + }, + name: 'SizeFont02', + attributes: { + category: 'size', + type: 'font', + item: '02', + }, + path: ['size', 'font', '02'], + }, + '03': { + value: '0.8125rem', + comment: '13px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.8125, + comment: '13px', + }, + name: 'SizeFont03', + attributes: { + category: 'size', + type: 'font', + item: '03', + }, + path: ['size', 'font', '03'], + }, + '04': { + value: '0.875rem', + comment: '14px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.875, + comment: '14px', + }, + name: 'SizeFont04', + attributes: { + category: 'size', + type: 'font', + item: '04', + }, + path: ['size', 'font', '04'], + }, + '05': { + value: '1rem', + comment: '16px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1, + comment: '16px', + }, + name: 'SizeFont05', + attributes: { + category: 'size', + type: 'font', + item: '05', + }, + path: ['size', 'font', '05'], + }, + '06': { + value: '1.125rem', + comment: '18px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.125, + comment: '18px', + }, + name: 'SizeFont06', + attributes: { + category: 'size', + type: 'font', + item: '06', + }, + path: ['size', 'font', '06'], + }, + '07': { + value: '1.4375rem', + comment: '23px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.4375, + comment: '23px', + }, + name: 'SizeFont07', + attributes: { + category: 'size', + type: 'font', + item: '07', + }, + path: ['size', 'font', '07'], + }, + '08': { + value: '1.75rem', + comment: '28px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.75, + comment: '28px', + }, + name: 'SizeFont08', + attributes: { + category: 'size', + type: 'font', + item: '08', + }, + path: ['size', 'font', '08'], + }, + '09': { + value: '2.125rem', + comment: '34px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.125, + comment: '34px', + }, + name: 'SizeFont09', + attributes: { + category: 'size', + type: 'font', + item: '09', + }, + path: ['size', 'font', '09'], + }, + }, + line: { + 10: { + xs: { + value: '2.5rem', + comment: '40px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.5, + comment: '40px', + }, + name: 'SizeLine10Xs', + attributes: { + category: 'size', + type: 'line', + item: '10', + subitem: 'xs', + }, + path: ['size', 'line', '10', 'xs'], + }, + s: { + value: '3rem', + comment: '48px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3, + comment: '48px', + }, + name: 'SizeLine10S', + attributes: { + category: 'size', + type: 'line', + item: '10', + subitem: 's', + }, + path: ['size', 'line', '10', 's'], + }, + m: { + value: '3.5rem', + comment: '56px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.5, + comment: '56px', + }, + name: 'SizeLine10M', + attributes: { + category: 'size', + type: 'line', + item: '10', + subitem: 'm', + }, + path: ['size', 'line', '10', 'm'], + }, + l: { + value: '3.75rem', + comment: '60px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.75, + comment: '60px', + }, + name: 'SizeLine10L', + attributes: { + category: 'size', + type: 'line', + item: '10', + subitem: 'l', + }, + path: ['size', 'line', '10', 'l'], + }, + }, + 11: { + xs: { + value: '3rem', + comment: '48px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3, + comment: '48px', + }, + name: 'SizeLine11Xs', + attributes: { + category: 'size', + type: 'line', + item: '11', + subitem: 'xs', + }, + path: ['size', 'line', '11', 'xs'], + }, + s: { + value: '3.5rem', + comment: '56px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.5, + comment: '56px', + }, + name: 'SizeLine11S', + attributes: { + category: 'size', + type: 'line', + item: '11', + subitem: 's', + }, + path: ['size', 'line', '11', 's'], + }, + m: { + value: '4.25rem', + comment: '68px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 4.25, + comment: '68px', + }, + name: 'SizeLine11M', + attributes: { + category: 'size', + type: 'line', + item: '11', + subitem: 'm', + }, + path: ['size', 'line', '11', 'm'], + }, + l: { + value: '4.5rem', + comment: '72px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 4.5, + comment: '72px', + }, + name: 'SizeLine11L', + attributes: { + category: 'size', + type: 'line', + item: '11', + subitem: 'l', + }, + path: ['size', 'line', '11', 'l'], + }, + }, + 12: { + xs: { + value: '3.75rem', + comment: '60px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.75, + comment: '60px', + }, + name: 'SizeLine12Xs', + attributes: { + category: 'size', + type: 'line', + item: '12', + subitem: 'xs', + }, + path: ['size', 'line', '12', 'xs'], + }, + s: { + value: '4.25rem', + comment: '68px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 4.25, + comment: '68px', + }, + name: 'SizeLine12S', + attributes: { + category: 'size', + type: 'line', + item: '12', + subitem: 's', + }, + path: ['size', 'line', '12', 's'], + }, + m: { + value: '5rem', + comment: '80px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 5, + comment: '80px', + }, + name: 'SizeLine12M', + attributes: { + category: 'size', + type: 'line', + item: '12', + subitem: 'm', + }, + path: ['size', 'line', '12', 'm'], + }, + l: { + value: '5.5rem', + comment: '88px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 5.5, + comment: '88px', + }, + name: 'SizeLine12L', + attributes: { + category: 'size', + type: 'line', + item: '12', + subitem: 'l', + }, + path: ['size', 'line', '12', 'l'], + }, + }, + '01': { + xs: { + value: '0.75rem', + comment: '12px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.75, + comment: '12px', + }, + name: 'SizeLine01Xs', + attributes: { + category: 'size', + type: 'line', + item: '01', + subitem: 'xs', + }, + path: ['size', 'line', '01', 'xs'], + }, + s: { + value: '0.75rem', + comment: '12px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.75, + comment: '12px', + }, + name: 'SizeLine01S', + attributes: { + category: 'size', + type: 'line', + item: '01', + subitem: 's', + }, + path: ['size', 'line', '01', 's'], + }, + m: { + value: '0.875rem', + comment: '14px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.875, + comment: '14px', + }, + name: 'SizeLine01M', + attributes: { + category: 'size', + type: 'line', + item: '01', + subitem: 'm', + }, + path: ['size', 'line', '01', 'm'], + }, + l: { + value: '1rem', + comment: '16px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1, + comment: '16px', + }, + name: 'SizeLine01L', + attributes: { + category: 'size', + type: 'line', + item: '01', + subitem: 'l', + }, + path: ['size', 'line', '01', 'l'], + }, + }, + '02': { + xs: { + value: '0.75rem', + comment: '12px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.75, + comment: '12px', + }, + name: 'SizeLine02Xs', + attributes: { + category: 'size', + type: 'line', + item: '02', + subitem: 'xs', + }, + path: ['size', 'line', '02', 'xs'], + }, + s: { + value: '0.875rem', + comment: '14px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.875, + comment: '14px', + }, + name: 'SizeLine02S', + attributes: { + category: 'size', + type: 'line', + item: '02', + subitem: 's', + }, + path: ['size', 'line', '02', 's'], + }, + m: { + value: '1rem', + comment: '16px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1, + comment: '16px', + }, + name: 'SizeLine02M', + attributes: { + category: 'size', + type: 'line', + item: '02', + subitem: 'm', + }, + path: ['size', 'line', '02', 'm'], + }, + l: { + value: '1.125rem', + comment: '18px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.125, + comment: '18px', + }, + name: 'SizeLine02L', + attributes: { + category: 'size', + type: 'line', + item: '02', + subitem: 'l', + }, + path: ['size', 'line', '02', 'l'], + }, + }, + '03': { + xs: { + value: '0.875rem', + comment: '14px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.875, + comment: '14px', + }, + name: 'SizeLine03Xs', + attributes: { + category: 'size', + type: 'line', + item: '03', + subitem: 'xs', + }, + path: ['size', 'line', '03', 'xs'], + }, + s: { + value: '1rem', + comment: '16px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1, + comment: '16px', + }, + name: 'SizeLine03S', + attributes: { + category: 'size', + type: 'line', + item: '03', + subitem: 's', + }, + path: ['size', 'line', '03', 's'], + }, + m: { + value: '1.125rem', + comment: '18px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.125, + comment: '18px', + }, + name: 'SizeLine03M', + attributes: { + category: 'size', + type: 'line', + item: '03', + subitem: 'm', + }, + path: ['size', 'line', '03', 'm'], + }, + l: { + value: '1.25rem', + comment: '20px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.25, + comment: '20px', + }, + name: 'SizeLine03L', + attributes: { + category: 'size', + type: 'line', + item: '03', + subitem: 'l', + }, + path: ['size', 'line', '03', 'l'], + }, + }, + '04': { + xs: { + value: '0.875rem', + comment: '14px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 0.875, + comment: '14px', + }, + name: 'SizeLine04Xs', + attributes: { + category: 'size', + type: 'line', + item: '04', + subitem: 'xs', + }, + path: ['size', 'line', '04', 'xs'], + }, + s: { + value: '1rem', + comment: '16px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1, + comment: '16px', + }, + name: 'SizeLine04S', + attributes: { + category: 'size', + type: 'line', + item: '04', + subitem: 's', + }, + path: ['size', 'line', '04', 's'], + }, + m: { + value: '1.125rem', + comment: '18px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.125, + comment: '18px', + }, + name: 'SizeLine04M', + attributes: { + category: 'size', + type: 'line', + item: '04', + subitem: 'm', + }, + path: ['size', 'line', '04', 'm'], + }, + l: { + value: '1.375rem', + comment: '22px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.375, + comment: '22px', + }, + name: 'SizeLine04L', + attributes: { + category: 'size', + type: 'line', + item: '04', + subitem: 'l', + }, + path: ['size', 'line', '04', 'l'], + }, + }, + '05': { + xs: { + value: '1rem', + comment: '16px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1, + comment: '16px', + }, + name: 'SizeLine05Xs', + attributes: { + category: 'size', + type: 'line', + item: '05', + subitem: 'xs', + }, + path: ['size', 'line', '05', 'xs'], + }, + s: { + value: '1.125rem', + comment: '18px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.125, + comment: '18px', + }, + name: 'SizeLine05S', + attributes: { + category: 'size', + type: 'line', + item: '05', + subitem: 's', + }, + path: ['size', 'line', '05', 's'], + }, + m: { + value: '1.375rem', + comment: '22px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.375, + comment: '22px', + }, + name: 'SizeLine05M', + attributes: { + category: 'size', + type: 'line', + item: '05', + subitem: 'm', + }, + path: ['size', 'line', '05', 'm'], + }, + l: { + value: '1.5rem', + comment: '24px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.5, + comment: '24px', + }, + name: 'SizeLine05L', + attributes: { + category: 'size', + type: 'line', + item: '05', + subitem: 'l', + }, + path: ['size', 'line', '05', 'l'], + }, + }, + '06': { + xs: { + value: '1.125rem', + comment: '18px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.125, + comment: '18px', + }, + name: 'SizeLine06Xs', + attributes: { + category: 'size', + type: 'line', + item: '06', + subitem: 'xs', + }, + path: ['size', 'line', '06', 'xs'], + }, + s: { + value: '1.25rem', + comment: '20px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.25, + comment: '20px', + }, + name: 'SizeLine06S', + attributes: { + category: 'size', + type: 'line', + item: '06', + subitem: 's', + }, + path: ['size', 'line', '06', 's'], + }, + m: { + value: '1.5rem', + comment: '24px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.5, + comment: '24px', + }, + name: 'SizeLine06M', + attributes: { + category: 'size', + type: 'line', + item: '06', + subitem: 'm', + }, + path: ['size', 'line', '06', 'm'], + }, + l: { + value: '1.75rem', + comment: '28px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.75, + comment: '28px', + }, + name: 'SizeLine06L', + attributes: { + category: 'size', + type: 'line', + item: '06', + subitem: 'l', + }, + path: ['size', 'line', '06', 'l'], + }, + }, + '07': { + xs: { + value: '1.5rem', + comment: '24px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.5, + comment: '24px', + }, + name: 'SizeLine07Xs', + attributes: { + category: 'size', + type: 'line', + item: '07', + subitem: 'xs', + }, + path: ['size', 'line', '07', 'xs'], + }, + s: { + value: '1.75rem', + comment: '28px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.75, + comment: '28px', + }, + name: 'SizeLine07S', + attributes: { + category: 'size', + type: 'line', + item: '07', + subitem: 's', + }, + path: ['size', 'line', '07', 's'], + }, + m: { + value: '2rem', + comment: '32px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2, + comment: '32px', + }, + name: 'SizeLine07M', + attributes: { + category: 'size', + type: 'line', + item: '07', + subitem: 'm', + }, + path: ['size', 'line', '07', 'm'], + }, + l: { + value: '2.25rem', + comment: '36px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.25, + comment: '36px', + }, + name: 'SizeLine07L', + attributes: { + category: 'size', + type: 'line', + item: '07', + subitem: 'l', + }, + path: ['size', 'line', '07', 'l'], + }, + }, + '08': { + xs: { + value: '1.75rem', + comment: '28px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 1.75, + comment: '28px', + }, + name: 'SizeLine08Xs', + attributes: { + category: 'size', + type: 'line', + item: '08', + subitem: 'xs', + }, + path: ['size', 'line', '08', 'xs'], + }, + s: { + value: '2rem', + comment: '32px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2, + comment: '32px', + }, + name: 'SizeLine08S', + attributes: { + category: 'size', + type: 'line', + item: '08', + subitem: 's', + }, + path: ['size', 'line', '08', 's'], + }, + m: { + value: '2.25rem', + comment: '36px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.25, + comment: '36px', + }, + name: 'SizeLine08M', + attributes: { + category: 'size', + type: 'line', + item: '08', + subitem: 'm', + }, + path: ['size', 'line', '08', 'm'], + }, + l: { + value: '2.75rem', + comment: '44px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.75, + comment: '44px', + }, + name: 'SizeLine08L', + attributes: { + category: 'size', + type: 'line', + item: '08', + subitem: 'l', + }, + path: ['size', 'line', '08', 'l'], + }, + }, + '09': { + xs: { + value: '2.25rem', + comment: '36px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.25, + comment: '36px', + }, + name: 'SizeLine09Xs', + attributes: { + category: 'size', + type: 'line', + item: '09', + subitem: 'xs', + }, + path: ['size', 'line', '09', 'xs'], + }, + s: { + value: '2.5rem', + comment: '40px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.5, + comment: '40px', + }, + name: 'SizeLine09S', + attributes: { + category: 'size', + type: 'line', + item: '09', + subitem: 's', + }, + path: ['size', 'line', '09', 's'], + }, + m: { + value: '2.75rem', + comment: '44px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 2.75, + comment: '44px', + }, + name: 'SizeLine09M', + attributes: { + category: 'size', + type: 'line', + item: '09', + subitem: 'm', + }, + path: ['size', 'line', '09', 'm'], + }, + l: { + value: '3.25rem', + comment: '52px', + filePath: 'packages/tokens/properties/size/font.json', + isSource: true, + original: { + value: 3.25, + comment: '52px', + }, + name: 'SizeLine09L', + attributes: { + category: 'size', + type: 'line', + item: '09', + subitem: 'l', + }, + path: ['size', 'line', '09', 'l'], + }, + }, + }, + gutter: { + screen: { + s: { + value: '1rem', + filePath: 'packages/tokens/properties/size/grid.json', + isSource: true, + original: { + value: 1, + }, + name: 'SizeGutterScreenS', + attributes: { + category: 'size', + type: 'gutter', + item: 'screen', + subitem: 's', + }, + path: ['size', 'gutter', 'screen', 's'], + }, + m: { + value: '2rem', + filePath: 'packages/tokens/properties/size/grid.json', + isSource: true, + original: { + value: 2, + }, + name: 'SizeGutterScreenM', + attributes: { + category: 'size', + type: 'gutter', + item: 'screen', + subitem: 'm', + }, + path: ['size', 'gutter', 'screen', 'm'], + }, + }, + }, + }, + screen: { + s: { + value: '0px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '0px', + }, + name: 'ScreenS', + attributes: { + category: 'screen', + type: 's', + }, + path: ['screen', 's'], + }, + 's-medium': { + value: '320px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '320px', + }, + name: 'ScreenSMedium', + attributes: { + category: 'screen', + type: 's-medium', + }, + path: ['screen', 's-medium'], + }, + 's-large': { + value: '360px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '360px', + }, + name: 'ScreenSLarge', + attributes: { + category: 'screen', + type: 's-large', + }, + path: ['screen', 's-large'], + }, + 's-xlarge': { + value: '390px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '390px', + }, + name: 'ScreenSXlarge', + attributes: { + category: 'screen', + type: 's-xlarge', + }, + path: ['screen', 's-xlarge'], + }, + m: { + value: '680px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '680px', + }, + name: 'ScreenM', + attributes: { + category: 'screen', + type: 'm', + }, + path: ['screen', 'm'], + }, + 'm-medium': { + value: '769px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '769px', + }, + name: 'ScreenMMedium', + attributes: { + category: 'screen', + type: 'm-medium', + }, + path: ['screen', 'm-medium'], + }, + l: { + value: '1024px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '1024px', + }, + name: 'ScreenL', + attributes: { + category: 'screen', + type: 'l', + }, + path: ['screen', 'l'], + }, + 'l-medium': { + value: '1100px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '1100px', + }, + name: 'ScreenLMedium', + attributes: { + category: 'screen', + type: 'l-medium', + }, + path: ['screen', 'l-medium'], + }, + xl: { + value: '1280px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '1280px', + }, + name: 'ScreenXl', + attributes: { + category: 'screen', + type: 'xl', + }, + path: ['screen', 'xl'], + }, + 'xl-medium': { + value: '1440px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '1440px', + }, + name: 'ScreenXlMedium', + attributes: { + category: 'screen', + type: 'xl-medium', + }, + path: ['screen', 'xl-medium'], + }, + 'xl-large': { + value: '1680px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '1680px', + }, + name: 'ScreenXlLarge', + attributes: { + category: 'screen', + type: 'xl-large', + }, + path: ['screen', 'xl-large'], + }, + xxl: { + value: '1920px', + filePath: 'packages/tokens/properties/size/screens.json', + isSource: true, + original: { + value: '1920px', + }, + name: 'ScreenXxl', + attributes: { + category: 'screen', + type: 'xxl', + }, + path: ['screen', 'xxl'], + }, + }, +} diff --git a/packages/tokens/config.js b/packages/tokens/config.js index e98acb069..fb6b3dc07 100644 --- a/packages/tokens/config.js +++ b/packages/tokens/config.js @@ -1,63 +1,42 @@ -const path = require('path') const CM = require('@mozaic-ds/configuration-manager') -const customActions = require('./src/actions/actions.js') +const path = require('path') +const customActions = require('./actions/actions.js') -const userTokensSourcePath = CM.getKey('tokens.localTokensSrcPath') -const userTokensBuildPath = CM.getKey('tokens.localTokensExportPath') -const userTokensPlatforms = CM.getKey('tokens.platforms') +const getPath = (localRelativePath) => + path.relative(process.cwd(), `${__dirname}/${localRelativePath}`) -const getPath = (localRelativePath) => { - return path.relative(process.cwd(), `${__dirname}/${localRelativePath}`) -} +const getBuildPath = (path) => getPath(path) + '/' -// Source -const defaultTokensSourcePath = getPath('src/tokens/leroymerlin/**/*.json') +const preset = CM.getKey('preset') -function getTokensSourcePath(src) { - let source = '' +const localSrcPath = CM.getKey('tokens.localTokensSrcPath') - if (src) { - source = [defaultTokensSourcePath, getPath(src)] - } else { - source = userTokensSourcePath - ? [defaultTokensSourcePath, `${userTokensSourcePath}**/*.json`] - : [defaultTokensSourcePath] - } +const localTokensExportPath = CM.getKey('tokens.localTokensExportPath') - return source -} +const source = localSrcPath + ? [getPath('properties/**/*.json'), `${localSrcPath}properties/**/*.json`] + : [getPath('properties/**/*.json')] -// Platform -const defaultPlatforms = ['scss'] -const allowedPlatforms = userTokensPlatforms - ? defaultPlatforms.concat(userTokensPlatforms) - : defaultPlatforms +const availablePresets = { + adeo: 'AdeoProperties/**/*.json', + bricoman: 'BricomanProperties/**/*.json', +} -const getTokensBuildPath = (brand, platform) => { - return userTokensBuildPath - ? `${userTokensBuildPath}${brand}/${platform}/` - : getPath(`build/${brand}/${platform}`) + '/' +if (preset) { + source.splice(1, 0, getPath(availablePresets[preset])) } -function getPlatforms(brand) { - const platformsObject = {} - const platforms = { - scss: { - transformGroup: 'scss', - buildPath: getTokensBuildPath(brand, 'scss'), - files: [ - { - destination: '_tokens.scss', - format: 'scss/map-deep', - options: { - showFileHeader: false, - }, - }, - ], - }, +const setLocalTokensExportPath = (dir) => + localTokensExportPath + ? `${localTokensExportPath}${dir}/` + : getBuildPath(`build/${dir}/`) + +const config = { + source, + platforms: { css: { transformGroup: 'css', - buildPath: getTokensBuildPath(brand, 'css'), + buildPath: setLocalTokensExportPath('css'), files: [ { destination: 'root.scss', @@ -75,9 +54,22 @@ function getPlatforms(brand) { ], actions: ['cssvariables_to_scss'], }, + scss: { + transformGroup: 'scss', + buildPath: setLocalTokensExportPath('scss'), + files: [ + { + destination: '_tokens.scss', + format: 'scss/map-deep', + options: { + showFileHeader: false, + }, + }, + ], + }, android: { transformGroup: 'android', - buildPath: getTokensBuildPath(brand, 'android'), + buildPath: setLocalTokensExportPath('android'), files: [ { destination: 'font_dimens.xml', @@ -97,7 +89,7 @@ function getPlatforms(brand) { }, js: { transformGroup: 'js', - buildPath: getTokensBuildPath(brand, 'js'), + buildPath: setLocalTokensExportPath('js'), files: [ { destination: 'tokensObject.js', @@ -117,7 +109,7 @@ function getPlatforms(brand) { }, 'ios-swift': { transformGroup: 'ios-swift', - buildPath: getTokensBuildPath(brand, 'ios'), + buildPath: setLocalTokensExportPath('ios'), files: [ { destination: 'StyleDictionaryColor.swift', @@ -157,7 +149,7 @@ function getPlatforms(brand) { }, ios: { transformGroup: 'ios', - buildPath: getTokensBuildPath(brand, 'ios'), + buildPath: setLocalTokensExportPath('ios'), files: [ { destination: 'StyleDictionaryColor.h', @@ -229,28 +221,8 @@ function getPlatforms(brand) { }, ], }, - } - - allowedPlatforms.forEach(function (platform) { - if (platforms.hasOwnProperty(platform)) { - platformsObject[platform] = platforms[platform] - } else { - console.error( - `✗ ERROR : The requested ${platform} platform is not an allowed platform.` - ) - } - }) - - return platformsObject -} - -// Config Object -function getStyleDictionaryConfig(brand, tokens) { - return { - source: getTokensSourcePath(tokens), - platforms: getPlatforms(brand), - action: customActions, - } + }, + action: customActions, } -module.exports = ({ brand, tokens }) => getStyleDictionaryConfig(brand, tokens) +module.exports = config diff --git a/packages/tokens/src/tokens/leroymerlin/border/base.json b/packages/tokens/properties/border/base.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/border/base.json rename to packages/tokens/properties/border/base.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/badge.json b/packages/tokens/properties/color/badge.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/badge.json rename to packages/tokens/properties/color/badge.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/base.json b/packages/tokens/properties/color/base.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/base.json rename to packages/tokens/properties/color/base.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/breadcrumb.json b/packages/tokens/properties/color/breadcrumb.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/breadcrumb.json rename to packages/tokens/properties/color/breadcrumb.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/button.json b/packages/tokens/properties/color/button.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/button.json rename to packages/tokens/properties/color/button.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/card.json b/packages/tokens/properties/color/card.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/card.json rename to packages/tokens/properties/color/card.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/datatable.json b/packages/tokens/properties/color/datatable.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/datatable.json rename to packages/tokens/properties/color/datatable.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/dialog.json b/packages/tokens/properties/color/dialog.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/dialog.json rename to packages/tokens/properties/color/dialog.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/divider.json b/packages/tokens/properties/color/divider.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/divider.json rename to packages/tokens/properties/color/divider.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/fields.json b/packages/tokens/properties/color/fields.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/fields.json rename to packages/tokens/properties/color/fields.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/fileuploder.json b/packages/tokens/properties/color/fileuploder.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/fileuploder.json rename to packages/tokens/properties/color/fileuploder.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/flag.json b/packages/tokens/properties/color/flag.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/flag.json rename to packages/tokens/properties/color/flag.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/focus.json b/packages/tokens/properties/color/focus.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/focus.json rename to packages/tokens/properties/color/focus.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/font.json b/packages/tokens/properties/color/font.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/font.json rename to packages/tokens/properties/color/font.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/heading.json b/packages/tokens/properties/color/heading.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/heading.json rename to packages/tokens/properties/color/heading.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/hero.json b/packages/tokens/properties/color/hero.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/hero.json rename to packages/tokens/properties/color/hero.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/input.json b/packages/tokens/properties/color/input.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/input.json rename to packages/tokens/properties/color/input.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/link.json b/packages/tokens/properties/color/link.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/link.json rename to packages/tokens/properties/color/link.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/listbox.json b/packages/tokens/properties/color/listbox.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/listbox.json rename to packages/tokens/properties/color/listbox.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/notification.json b/packages/tokens/properties/color/notification.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/notification.json rename to packages/tokens/properties/color/notification.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/option-button.json b/packages/tokens/properties/color/option-button.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/option-button.json rename to packages/tokens/properties/color/option-button.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/option-card.json b/packages/tokens/properties/color/option-card.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/option-card.json rename to packages/tokens/properties/color/option-card.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/overlay.json b/packages/tokens/properties/color/overlay.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/overlay.json rename to packages/tokens/properties/color/overlay.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/password-input.json b/packages/tokens/properties/color/password-input.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/password-input.json rename to packages/tokens/properties/color/password-input.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/phone-number.json b/packages/tokens/properties/color/phone-number.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/phone-number.json rename to packages/tokens/properties/color/phone-number.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/progressbar.json b/packages/tokens/properties/color/progressbar.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/progressbar.json rename to packages/tokens/properties/color/progressbar.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/sidebar.json b/packages/tokens/properties/color/sidebar.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/sidebar.json rename to packages/tokens/properties/color/sidebar.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/star.json b/packages/tokens/properties/color/star.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/star.json rename to packages/tokens/properties/color/star.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/stepper.json b/packages/tokens/properties/color/stepper.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/stepper.json rename to packages/tokens/properties/color/stepper.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/tabs.json b/packages/tokens/properties/color/tabs.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/tabs.json rename to packages/tokens/properties/color/tabs.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/tag.json b/packages/tokens/properties/color/tag.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/tag.json rename to packages/tokens/properties/color/tag.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/toggle.json b/packages/tokens/properties/color/toggle.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/toggle.json rename to packages/tokens/properties/color/toggle.json diff --git a/packages/tokens/src/tokens/leroymerlin/color/tooltip.json b/packages/tokens/properties/color/tooltip.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/color/tooltip.json rename to packages/tokens/properties/color/tooltip.json diff --git a/packages/tokens/src/tokens/leroymerlin/preset.json b/packages/tokens/properties/preset.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/preset.json rename to packages/tokens/properties/preset.json diff --git a/packages/tokens/src/tokens/leroymerlin/radius/base.json b/packages/tokens/properties/radius/base.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/radius/base.json rename to packages/tokens/properties/radius/base.json diff --git a/packages/tokens/src/tokens/leroymerlin/shadow/base.json b/packages/tokens/properties/shadow/base.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/shadow/base.json rename to packages/tokens/properties/shadow/base.json diff --git a/packages/tokens/src/tokens/leroymerlin/size/base.json b/packages/tokens/properties/size/base.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/size/base.json rename to packages/tokens/properties/size/base.json diff --git a/packages/tokens/src/tokens/leroymerlin/size/font.json b/packages/tokens/properties/size/font.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/size/font.json rename to packages/tokens/properties/size/font.json diff --git a/packages/tokens/src/tokens/leroymerlin/size/grid.json b/packages/tokens/properties/size/grid.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/size/grid.json rename to packages/tokens/properties/size/grid.json diff --git a/packages/tokens/src/tokens/leroymerlin/size/screens.json b/packages/tokens/properties/size/screens.json similarity index 100% rename from packages/tokens/src/tokens/leroymerlin/size/screens.json rename to packages/tokens/properties/size/screens.json diff --git a/packages/tokens/src/tokens/adeo/font.json b/packages/tokens/src/tokens/adeo/font.json deleted file mode 100644 index 33d439665..000000000 --- a/packages/tokens/src/tokens/adeo/font.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "font": { - "family": { - "value": "Roboto" - }, - "weight": { - "light": { - "value": 300 - }, - "regular": { - "value": 400 - }, - "semi-bold": { - "value": 500 - } - } - } -} diff --git a/packages/tokens/src/tokens/leroymerlin/font.json b/packages/tokens/src/tokens/leroymerlin/font.json deleted file mode 100644 index 82a4fc119..000000000 --- a/packages/tokens/src/tokens/leroymerlin/font.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "font": { - "family": { - "value": "LeroyMerlin" - }, - "weight": { - "light": { - "value": 300 - }, - "regular": { - "value": 400 - }, - "semi-bold": { - "value": 600 - } - } - } -} diff --git a/packages/tokens/tokensBuild.js b/packages/tokens/tokensBuild.js index 061e4c15d..a941698fc 100644 --- a/packages/tokens/tokensBuild.js +++ b/packages/tokens/tokensBuild.js @@ -1,24 +1,4 @@ -const StyleDictionary = require('style-dictionary') -const getConfig = require('./config.js') -const brands = [ - { - brand: 'lm', - tokens: 'src/tokens/leroymerlin/**/*.json', - }, - { - brand: 'adeo', - tokens: 'src/tokens/adeo/**/*.json', - }, - { - brand: 'bricoman', - tokens: 'src/tokens/bricoman/**/*.json', - }, -] +const config = require('./config.js') +const StyleDictionary = require('style-dictionary').extend(config) -module.exports = () => { - brands.forEach((brand) => { - const brandConfig = getConfig(brand) - - StyleDictionary.extend(brandConfig).buildAllPlatforms() - }) -} +module.exports = () => StyleDictionary.buildAllPlatforms() diff --git a/src/docs/Components/Accordion/code.mdx b/src/docs/Components/Accordion/code.mdx index 7a9ff8c67..a4f97a035 100644 --- a/src/docs/Components/Accordion/code.mdx +++ b/src/docs/Components/Accordion/code.mdx @@ -46,6 +46,8 @@ The creation of an **Accordion** in your code is done using the following HTML s ``` + + ## States Depending on the context of use, the accordion can have several states: @@ -74,6 +76,8 @@ You have the possibility to have an accordion with no padding. For this you have to add the `mc-accordion--no-padding` modifier to the main `mc-accordion` element. + + ### With icon You can add an icon into any accordions you want. @@ -90,6 +94,8 @@ For this you have to add to the `mc-accordion--checkable` modifier to the main ` Then add your toggle element inside the `mc-accordion__header` element. + + ### With Checkbox You can add [a Mozaic Checkbox](/Components/Form/Datepicker/) into any accordions you want. @@ -97,3 +103,5 @@ You can add [a Mozaic Checkbox](/Components/Form/Datepicker/) into any accordion For this you have to add to the `mc-accordion--checkable` modifier to the main `mc-accordion` element. Then add your toggle element inside the `mc-accordion__header` element. + + diff --git a/src/docs/Components/Accordion/index.mdx b/src/docs/Components/Accordion/index.mdx index 3d0cc8b74..bb50e1eea 100644 --- a/src/docs/Components/Accordion/index.mdx +++ b/src/docs/Components/Accordion/index.mdx @@ -12,17 +12,15 @@ links: webComponent: status: 'ready' link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-accordion' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-accordion' status: figma: 'ready' scss: 'ready' --- - > Accordions allow you to show or hide related content under vertically stacked lists. + + Please use accordions for complementary content when you need to have a minimum scroll. @@ -37,10 +35,14 @@ This pattern is available in a closed or an opened version. The closed version is the default state and it can be identified with the plus sign icon. It allows to minimize the scroll and quickly view the different stacked accordions. + + ### Opened The opened version expands the accordion to show the content within it. Unlike the opened version, it can be identified with the minus sign icon. + + ### Displaying accordions with icons The accordion pattern can be used with an illustrative icon before the title when you have to add a piece of additional visual information. diff --git a/src/docs/Components/Accordion/previews/basic.preview.html b/src/docs/Components/Accordion/previews/basic.preview.html new file mode 100644 index 000000000..4bf09da8c --- /dev/null +++ b/src/docs/Components/Accordion/previews/basic.preview.html @@ -0,0 +1,54 @@ +

+
+
+

+ +

+
+ +
+
+ + diff --git a/src/docs/Components/Accordion/previews/basic.preview.scss b/src/docs/Components/Accordion/previews/basic.preview.scss new file mode 100644 index 000000000..e7b136358 --- /dev/null +++ b/src/docs/Components/Accordion/previews/basic.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); + +#example { + @import "components/c.accordion"; +} + +.example { + margin: $mu125; +} + +p { + margin: 0; +} diff --git a/src/docs/Components/Accordion/previews/checkbox.preview.html b/src/docs/Components/Accordion/previews/checkbox.preview.html new file mode 100644 index 000000000..3941a84e8 --- /dev/null +++ b/src/docs/Components/Accordion/previews/checkbox.preview.html @@ -0,0 +1,58 @@ +
+
+
+
+ +
+

+ +

+
+ +
+
+ + diff --git a/src/docs/Components/Accordion/previews/checkbox.preview.scss b/src/docs/Components/Accordion/previews/checkbox.preview.scss new file mode 100644 index 000000000..2c1aa8b6d --- /dev/null +++ b/src/docs/Components/Accordion/previews/checkbox.preview.scss @@ -0,0 +1,16 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.accordion"; +@import "components/c.checkbox"; + +.example { + margin: $mu125; +} + +p { + margin: 0; +} + +.hidden { + display: none; +} diff --git a/src/docs/Components/Accordion/previews/icon.preview.scss b/src/docs/Components/Accordion/previews/icon.preview.scss index fdeec1103..02784c8ca 100644 --- a/src/docs/Components/Accordion/previews/icon.preview.scss +++ b/src/docs/Components/Accordion/previews/icon.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.accordion"; .example { diff --git a/src/docs/Components/Accordion/previews/no-padding.preview.html b/src/docs/Components/Accordion/previews/no-padding.preview.html new file mode 100644 index 000000000..9d1ea88e5 --- /dev/null +++ b/src/docs/Components/Accordion/previews/no-padding.preview.html @@ -0,0 +1,95 @@ +
+
+
+

+ +

+
+ +
+
+
+

+ +

+
+ +
+
+ + + + diff --git a/src/docs/Components/Accordion/previews/no-padding.preview.scss b/src/docs/Components/Accordion/previews/no-padding.preview.scss new file mode 100644 index 000000000..b1fb6be53 --- /dev/null +++ b/src/docs/Components/Accordion/previews/no-padding.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.accordion"; + +.example { + margin: $mu125; +} + +p { + margin: 0; +} diff --git a/src/docs/Components/Accordion/previews/open.preview.html b/src/docs/Components/Accordion/previews/open.preview.html new file mode 100644 index 000000000..7395634fa --- /dev/null +++ b/src/docs/Components/Accordion/previews/open.preview.html @@ -0,0 +1,54 @@ +
+
+
+

+ +

+
+
+

+ Fusce iaculis dolor nulla, a maximus ipsum sollicitudin et. Ut + condimentum at orci aliquam feugiat. Curabitur sagittis placerat leo sit + amet pharetra. +

+
+
+
+ + diff --git a/src/docs/Components/Accordion/previews/open.preview.scss b/src/docs/Components/Accordion/previews/open.preview.scss new file mode 100644 index 000000000..b1fb6be53 --- /dev/null +++ b/src/docs/Components/Accordion/previews/open.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.accordion"; + +.example { + margin: $mu125; +} + +p { + margin: 0; +} diff --git a/src/docs/Components/Accordion/previews/sizes.preview.scss b/src/docs/Components/Accordion/previews/sizes.preview.scss index decfa901a..f5827af52 100644 --- a/src/docs/Components/Accordion/previews/sizes.preview.scss +++ b/src/docs/Components/Accordion/previews/sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.accordion"; .example { diff --git a/src/docs/Components/Accordion/previews/stacked.preview.html b/src/docs/Components/Accordion/previews/stacked.preview.html new file mode 100644 index 000000000..ddf3106f3 --- /dev/null +++ b/src/docs/Components/Accordion/previews/stacked.preview.html @@ -0,0 +1,113 @@ +
+
+
+

+ +

+
+ +
+ +
+
+

+ +

+
+ +
+ +
+
+

+ +

+
+ +
+
+ + diff --git a/src/docs/Components/Accordion/previews/stacked.preview.scss b/src/docs/Components/Accordion/previews/stacked.preview.scss new file mode 100644 index 000000000..480b272a9 --- /dev/null +++ b/src/docs/Components/Accordion/previews/stacked.preview.scss @@ -0,0 +1,12 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.accordion"; +@import "components/c.links"; // used only for the example + +.example { + margin: $mu125; +} + +p { + margin: 0; +} diff --git a/src/docs/Components/Accordion/previews/states.preview.scss b/src/docs/Components/Accordion/previews/states.preview.scss index 92843df24..b1fb6be53 100644 --- a/src/docs/Components/Accordion/previews/states.preview.scss +++ b/src/docs/Components/Accordion/previews/states.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.accordion"; .example { diff --git a/src/docs/Components/Accordion/previews/toggle.preview.html b/src/docs/Components/Accordion/previews/toggle.preview.html new file mode 100644 index 000000000..5e93c4a19 --- /dev/null +++ b/src/docs/Components/Accordion/previews/toggle.preview.html @@ -0,0 +1,60 @@ +
+
+
+
+ + +
+

+ +

+
+ +
+
+ + diff --git a/src/docs/Components/Accordion/previews/toggle.preview.scss b/src/docs/Components/Accordion/previews/toggle.preview.scss new file mode 100644 index 000000000..01b30cb7a --- /dev/null +++ b/src/docs/Components/Accordion/previews/toggle.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.accordion"; +@import "components/c.checkbox"; +@import "components/c.toggle"; + +.example { + margin: $mu125; +} + +p { + margin: 0; +} + +.hidden { + display: none; +} diff --git a/src/docs/Components/Badge/index.mdx b/src/docs/Components/Badge/index.mdx index 8406e4e5e..900907d69 100644 --- a/src/docs/Components/Badge/index.mdx +++ b/src/docs/Components/Badge/index.mdx @@ -19,17 +19,19 @@ status: > A badge indicates the status of an entity and can evolve at any time. + + ## Types The badge component is available in 5 states. Each state corresponds with a defined status. | Colour theme | Status | Preview | | --------------- | ------------------------------------------------------------------------------- | ------------------------------------- | -| **Information** | New, To review, Draft | | -| **Success** | Validated, Online status | | -| **Warning** | Non-critical error, Incomplete task, Required action | | -| **Danger** | Critical error, Invalid data, Offline status, Rejected task, Recently cancelled | | -| **Neutral** | Archived, Disabled, Draft, Long ago cancelled | | +| **Information** | New, To review, Draft | | +| **Success** | Validated, Online status | | +| **Warning** | Non-critical error, Incomplete task, Required action | | +| **Danger** | Critical error, Invalid data, Offline status, Rejected task, Recently cancelled | | +| **Neutral** | Archived, Disabled, Draft, Long ago cancelled | | diff --git a/src/docs/Components/Badge/previews/badge-danger.preview.html b/src/docs/Components/Badge/previews/badge-danger.preview.html new file mode 100644 index 000000000..40d02b35f --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-danger.preview.html @@ -0,0 +1,5 @@ +
+
+
Badge danger
+
+
diff --git a/src/docs/Components/Badge/previews/badge-danger.preview.scss b/src/docs/Components/Badge/previews/badge-danger.preview.scss new file mode 100644 index 000000000..a1db73ed7 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-danger.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.badge"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + } +} diff --git a/src/docs/Components/Badge/previews/badge-info.preview.html b/src/docs/Components/Badge/previews/badge-info.preview.html new file mode 100644 index 000000000..509fb1520 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-info.preview.html @@ -0,0 +1,5 @@ +
+
+
Badge info
+
+
diff --git a/src/docs/Components/Badge/previews/badge-info.preview.scss b/src/docs/Components/Badge/previews/badge-info.preview.scss new file mode 100644 index 000000000..a1db73ed7 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-info.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.badge"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + } +} diff --git a/src/docs/Components/Badge/previews/badge-neutral.preview.html b/src/docs/Components/Badge/previews/badge-neutral.preview.html new file mode 100644 index 000000000..3d857f7b5 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-neutral.preview.html @@ -0,0 +1,5 @@ +
+
+
Badge neutral
+
+
diff --git a/src/docs/Components/Badge/previews/badge-neutral.preview.scss b/src/docs/Components/Badge/previews/badge-neutral.preview.scss new file mode 100644 index 000000000..a1db73ed7 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-neutral.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.badge"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + } +} diff --git a/src/docs/Components/Badge/previews/badge-success.preview.html b/src/docs/Components/Badge/previews/badge-success.preview.html new file mode 100644 index 000000000..0d6f6ac1a --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-success.preview.html @@ -0,0 +1,5 @@ +
+
+
Badge success
+
+
diff --git a/src/docs/Components/Badge/previews/badge-success.preview.scss b/src/docs/Components/Badge/previews/badge-success.preview.scss new file mode 100644 index 000000000..a1db73ed7 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-success.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.badge"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + } +} diff --git a/src/docs/Components/Badge/previews/badge-warning.preview.html b/src/docs/Components/Badge/previews/badge-warning.preview.html new file mode 100644 index 000000000..1f42c9e21 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-warning.preview.html @@ -0,0 +1,5 @@ +
+
+
Badge warning
+
+
diff --git a/src/docs/Components/Badge/previews/badge-warning.preview.scss b/src/docs/Components/Badge/previews/badge-warning.preview.scss new file mode 100644 index 000000000..a1db73ed7 --- /dev/null +++ b/src/docs/Components/Badge/previews/badge-warning.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.badge"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + } +} diff --git a/src/docs/Components/Badge/previews/basic.preview.scss b/src/docs/Components/Badge/previews/basic.preview.scss index 5528f242c..a1db73ed7 100644 --- a/src/docs/Components/Badge/previews/basic.preview.scss +++ b/src/docs/Components/Badge/previews/basic.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; .example { diff --git a/src/docs/Components/Breadcrumb/previews/dark-mode.preview.scss b/src/docs/Components/Breadcrumb/previews/dark-mode.preview.scss index fca4f7f8a..a0bc9aa89 100644 --- a/src/docs/Components/Breadcrumb/previews/dark-mode.preview.scss +++ b/src/docs/Components/Breadcrumb/previews/dark-mode.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.links"; @@ -7,7 +6,6 @@ .example { @include set-font-face(); - background-color: $color-grey-700; display: block; padding: $mu150; } diff --git a/src/docs/Components/Breadcrumb/previews/default.preview.scss b/src/docs/Components/Breadcrumb/previews/default.preview.scss index e23c12320..a0bc9aa89 100644 --- a/src/docs/Components/Breadcrumb/previews/default.preview.scss +++ b/src/docs/Components/Breadcrumb/previews/default.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.breadcrumb"; .example { + @include set-font-face(); + display: block; padding: $mu150; } diff --git a/src/docs/Components/Breadcrumb/previews/mobile.preview.scss b/src/docs/Components/Breadcrumb/previews/mobile.preview.scss index e23c12320..a0bc9aa89 100644 --- a/src/docs/Components/Breadcrumb/previews/mobile.preview.scss +++ b/src/docs/Components/Breadcrumb/previews/mobile.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.breadcrumb"; .example { + @include set-font-face(); + display: block; padding: $mu150; } diff --git a/src/docs/Components/Breadcrumb/previews/responsive.preview.scss b/src/docs/Components/Breadcrumb/previews/responsive.preview.scss index e23c12320..a0bc9aa89 100644 --- a/src/docs/Components/Breadcrumb/previews/responsive.preview.scss +++ b/src/docs/Components/Breadcrumb/previews/responsive.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.breadcrumb"; .example { + @include set-font-face(); + display: block; padding: $mu150; } diff --git a/src/docs/Components/Buttons/code.mdx b/src/docs/Components/Buttons/code.mdx index ba35d6f72..b6e64c767 100644 --- a/src/docs/Components/Buttons/code.mdx +++ b/src/docs/Components/Buttons/code.mdx @@ -172,6 +172,8 @@ Standard button states : - `focus` - `disabled` + + ## Customization and Mixins ### Customize buttons using tokens diff --git a/src/docs/Components/Buttons/previews/basic.preview.scss b/src/docs/Components/Buttons/previews/basic.preview.scss index 0291dff44..dc51ceb2a 100644 --- a/src/docs/Components/Buttons/previews/basic.preview.scss +++ b/src/docs/Components/Buttons/previews/basic.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; * { diff --git a/src/docs/Components/Buttons/previews/button-icon-and-text.preview.scss b/src/docs/Components/Buttons/previews/button-icon-and-text.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-icon-and-text.preview.scss +++ b/src/docs/Components/Buttons/previews/button-icon-and-text.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-icon-only.preview.scss b/src/docs/Components/Buttons/previews/button-icon-only.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-icon-only.preview.scss +++ b/src/docs/Components/Buttons/previews/button-icon-only.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-icon-position.preview.scss b/src/docs/Components/Buttons/previews/button-icon-position.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-icon-position.preview.scss +++ b/src/docs/Components/Buttons/previews/button-icon-position.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-icon.preview.scss b/src/docs/Components/Buttons/previews/button-icon.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-icon.preview.scss +++ b/src/docs/Components/Buttons/previews/button-icon.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-proximity-dont.preview.scss b/src/docs/Components/Buttons/previews/button-proximity-dont.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-proximity-dont.preview.scss +++ b/src/docs/Components/Buttons/previews/button-proximity-dont.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-sizes.preview.scss b/src/docs/Components/Buttons/previews/button-sizes.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-sizes.preview.scss +++ b/src/docs/Components/Buttons/previews/button-sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-state.preview.html b/src/docs/Components/Buttons/previews/button-state.preview.html new file mode 100644 index 000000000..550c8b0ec --- /dev/null +++ b/src/docs/Components/Buttons/previews/button-state.preview.html @@ -0,0 +1,149 @@ +
+
+

Hover

+ + + + + + +
+ +
+

Active

+ + + + + + +
+ +
+

Focus

+ + + + + + +
+ +
+

Disabled

+ + + + + + +
+
diff --git a/src/docs/Components/Buttons/previews/button-state.preview.scss b/src/docs/Components/Buttons/previews/button-state.preview.scss new file mode 100644 index 000000000..14e87db9f --- /dev/null +++ b/src/docs/Components/Buttons/previews/button-state.preview.scss @@ -0,0 +1,25 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.button"; + +.example { + display: flex; + width: 90%; + margin: auto; + text-align: center; + justify-content: center; + + h2 { + @include set-font-face("regular"); + } + + &__col { + flex: 0 1 33%; + box-sizing: border-box; + padding: 0 $mu100; + } + + .mc-button { + margin-bottom: $mu100; + } +} diff --git a/src/docs/Components/Buttons/previews/button-styles.preview.scss b/src/docs/Components/Buttons/previews/button-styles.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-styles.preview.scss +++ b/src/docs/Components/Buttons/previews/button-styles.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-widths-responsive.preview.scss b/src/docs/Components/Buttons/previews/button-widths-responsive.preview.scss index 4e038852a..0a972e2de 100644 --- a/src/docs/Components/Buttons/previews/button-widths-responsive.preview.scss +++ b/src/docs/Components/Buttons/previews/button-widths-responsive.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/button-widths.preview.scss b/src/docs/Components/Buttons/previews/button-widths.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/button-widths.preview.scss +++ b/src/docs/Components/Buttons/previews/button-widths.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/intro-bordered.preview.scss b/src/docs/Components/Buttons/previews/intro-bordered.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/intro-bordered.preview.scss +++ b/src/docs/Components/Buttons/previews/intro-bordered.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/intro.preview.scss b/src/docs/Components/Buttons/previews/intro.preview.scss index 166c14c19..692e4f908 100644 --- a/src/docs/Components/Buttons/previews/intro.preview.scss +++ b/src/docs/Components/Buttons/previews/intro.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Buttons/previews/suportedMarkup.preview.scss b/src/docs/Components/Buttons/previews/suportedMarkup.preview.scss index dbbdf135d..44e8a8e5e 100644 --- a/src/docs/Components/Buttons/previews/suportedMarkup.preview.scss +++ b/src/docs/Components/Buttons/previews/suportedMarkup.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; .example { diff --git a/src/docs/Components/Cards/previews/card-bordered.preview.scss b/src/docs/Components/Cards/previews/card-bordered.preview.scss index 2dd15bacd..4fca1c294 100644 --- a/src/docs/Components/Cards/previews/card-bordered.preview.scss +++ b/src/docs/Components/Cards/previews/card-bordered.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; @import "components/c.card"; diff --git a/src/docs/Components/Cards/previews/card-button.preview.scss b/src/docs/Components/Cards/previews/card-button.preview.scss index 0c4dbbead..5b9a36dc2 100644 --- a/src/docs/Components/Cards/previews/card-button.preview.scss +++ b/src/docs/Components/Cards/previews/card-button.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; @import "components/c.card"; diff --git a/src/docs/Components/Cards/previews/card-link.preview.scss b/src/docs/Components/Cards/previews/card-link.preview.scss index f22fdf596..7291c3e24 100644 --- a/src/docs/Components/Cards/previews/card-link.preview.scss +++ b/src/docs/Components/Cards/previews/card-link.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.card"; diff --git a/src/docs/Components/Cards/previews/card-ratios.preview.scss b/src/docs/Components/Cards/previews/card-ratios.preview.scss index 514fbe77f..a92fcda19 100644 --- a/src/docs/Components/Cards/previews/card-ratios.preview.scss +++ b/src/docs/Components/Cards/previews/card-ratios.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; @import "components/c.links"; @import "components/c.card"; diff --git a/src/docs/Components/Cards/previews/default.preview.scss b/src/docs/Components/Cards/previews/default.preview.scss index b15862e4d..2a88cadce 100644 --- a/src/docs/Components/Cards/previews/default.preview.scss +++ b/src/docs/Components/Cards/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.card"; diff --git a/src/docs/Components/Cards/previews/two-cards.preview.scss b/src/docs/Components/Cards/previews/two-cards.preview.scss index 5f41c142e..f9445bde6 100644 --- a/src/docs/Components/Cards/previews/two-cards.preview.scss +++ b/src/docs/Components/Cards/previews/two-cards.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.button"; @import "components/c.links"; @import "components/c.card"; diff --git a/src/docs/Components/DataTable/index.mdx b/src/docs/Components/DataTable/index.mdx index b8d7f2708..f84ce78e6 100644 --- a/src/docs/Components/DataTable/index.mdx +++ b/src/docs/Components/DataTable/index.mdx @@ -2,16 +2,6 @@ title: 'DataTable' order: 1 description: 'The DataTable is a complex and multi-usage component. It provides a structure to display many items and edit them easily through some features.' -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mdatatable' - status: 'ready' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-datatable' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-datatable' status: figma: 'ready' scss: 'ready' diff --git a/src/docs/Components/DataTable/previews/default.preview.scss b/src/docs/Components/DataTable/previews/default.preview.scss index 9904a37ac..f2b1b95f9 100644 --- a/src/docs/Components/DataTable/previews/default.preview.scss +++ b/src/docs/Components/DataTable/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/expanded.preview.scss b/src/docs/Components/DataTable/previews/expanded.preview.scss index c960d1b3e..231a0b0c6 100644 --- a/src/docs/Components/DataTable/previews/expanded.preview.scss +++ b/src/docs/Components/DataTable/previews/expanded.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/footer-noselect.preview.scss b/src/docs/Components/DataTable/previews/footer-noselect.preview.scss index 505384c36..caae13872 100644 --- a/src/docs/Components/DataTable/previews/footer-noselect.preview.scss +++ b/src/docs/Components/DataTable/previews/footer-noselect.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/footer-only.preview.scss b/src/docs/Components/DataTable/previews/footer-only.preview.scss index 9904a37ac..f2b1b95f9 100644 --- a/src/docs/Components/DataTable/previews/footer-only.preview.scss +++ b/src/docs/Components/DataTable/previews/footer-only.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/footer.preview.scss b/src/docs/Components/DataTable/previews/footer.preview.scss index 505384c36..caae13872 100644 --- a/src/docs/Components/DataTable/previews/footer.preview.scss +++ b/src/docs/Components/DataTable/previews/footer.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/header-edition.preview.scss b/src/docs/Components/DataTable/previews/header-edition.preview.scss index 6df8c2c86..47b1157ee 100644 --- a/src/docs/Components/DataTable/previews/header-edition.preview.scss +++ b/src/docs/Components/DataTable/previews/header-edition.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/header-only.preview.scss b/src/docs/Components/DataTable/previews/header-only.preview.scss index 9904a37ac..f2b1b95f9 100644 --- a/src/docs/Components/DataTable/previews/header-only.preview.scss +++ b/src/docs/Components/DataTable/previews/header-only.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/header.preview.scss b/src/docs/Components/DataTable/previews/header.preview.scss index 6df8c2c86..47b1157ee 100644 --- a/src/docs/Components/DataTable/previews/header.preview.scss +++ b/src/docs/Components/DataTable/previews/header.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/large.preview.scss b/src/docs/Components/DataTable/previews/large.preview.scss index ac88f80d4..dea995ca6 100644 --- a/src/docs/Components/DataTable/previews/large.preview.scss +++ b/src/docs/Components/DataTable/previews/large.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/small.preview.scss b/src/docs/Components/DataTable/previews/small.preview.scss index ac88f80d4..dea995ca6 100644 --- a/src/docs/Components/DataTable/previews/small.preview.scss +++ b/src/docs/Components/DataTable/previews/small.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/DataTable/previews/sticky.preview.scss b/src/docs/Components/DataTable/previews/sticky.preview.scss index 932c09ea1..699498418 100644 --- a/src/docs/Components/DataTable/previews/sticky.preview.scss +++ b/src/docs/Components/DataTable/previews/sticky.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.badge"; @import "components/c.button"; @import "components/c.checkbox"; diff --git a/src/docs/Components/Dividers/code.mdx b/src/docs/Components/Dividers/code.mdx index bc6ec16ca..a713ed44f 100644 --- a/src/docs/Components/Dividers/code.mdx +++ b/src/docs/Components/Dividers/code.mdx @@ -33,6 +33,8 @@ You must apply one of these classes on your HTML element according to the desire ``` + + ### Variations #### Color variations diff --git a/src/docs/Components/Dividers/index.mdx b/src/docs/Components/Dividers/index.mdx index a142e58f4..3e9c6747f 100644 --- a/src/docs/Components/Dividers/index.mdx +++ b/src/docs/Components/Dividers/index.mdx @@ -17,14 +17,20 @@ This is the version you should use in your layouts. This default version is AAA There are four different variations depending on your page needs. Every color variation has a vertical or an horizontal version to suit your pages design. + + ### Dark The dark version is very usefull when you need to insert a real break or a real distinction in your design to visually guide the eye of your user. + + ### Light We provide a light version of the dividers but you must be aware that this version is not AA accessible. This version must be used for dividers that are not mandatory to understand the content of your page. + + This version will only be visible on high end screens and won't be seen by people who have sight troubles. @@ -35,3 +41,4 @@ This version will only be visible on high end screens and won't be seen by peopl This lightest version must be used on dark background only to be visible. + diff --git a/src/docs/Components/Dividers/previews/advanced.preview.scss b/src/docs/Components/Dividers/previews/advanced.preview.scss index af17a784f..51acbb7d1 100644 --- a/src/docs/Components/Dividers/previews/advanced.preview.scss +++ b/src/docs/Components/Dividers/previews/advanced.preview.scss @@ -1,17 +1,15 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} .example { + @include set-font-face("regular"); + display: block; padding: $mu150; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Dividers/previews/color-variations.preview.scss b/src/docs/Components/Dividers/previews/color-variations.preview.scss index 4f5efab07..2349825e4 100644 --- a/src/docs/Components/Dividers/previews/color-variations.preview.scss +++ b/src/docs/Components/Dividers/previews/color-variations.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.divider"; .example { + @include set-font-face("regular"); + text-align: center; margin: auto; width: 90%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Dividers/previews/default.preview.html b/src/docs/Components/Dividers/previews/default.preview.html new file mode 100644 index 000000000..c603e2405 --- /dev/null +++ b/src/docs/Components/Dividers/previews/default.preview.html @@ -0,0 +1,9 @@ +
+
+

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. In recusandae at + quisquam excepturi dolores deleniti aliquid porro et asperiores, quam + sequi provident quibusdam nesciunt fugit, a amet commodi, maxime unde? +

+
+
diff --git a/src/docs/Components/Dividers/previews/default.preview.scss b/src/docs/Components/Dividers/previews/default.preview.scss new file mode 100644 index 000000000..feda58399 --- /dev/null +++ b/src/docs/Components/Dividers/previews/default.preview.scss @@ -0,0 +1,16 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.divider"; + +.example { + @include set-font-face("regular"); + + display: block; + padding: $mu150; + + &__element { + display: block; + margin: 0 auto; + min-height: $mu250; + } +} diff --git a/src/docs/Components/Dividers/previews/divider-dark.preview.html b/src/docs/Components/Dividers/previews/divider-dark.preview.html new file mode 100644 index 000000000..0d3e5f9be --- /dev/null +++ b/src/docs/Components/Dividers/previews/divider-dark.preview.html @@ -0,0 +1,9 @@ +
+
+

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. In recusandae at + quisquam excepturi dolores deleniti aliquid porro et asperiores, quam + sequi provident quibusdam nesciunt fugit, a amet commodi, maxime unde? +

+
+
diff --git a/src/docs/Components/Dividers/previews/divider-dark.preview.scss b/src/docs/Components/Dividers/previews/divider-dark.preview.scss new file mode 100644 index 000000000..590a5e7ac --- /dev/null +++ b/src/docs/Components/Dividers/previews/divider-dark.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.divider"; + +.example { + @include set-font-face("regular"); + + display: block; + padding: $mu150; + + &__element { + @include set-divider("bottom", "dark", "100%"); + + display: block; + margin: 0 auto; + min-height: $mu250; + position: relative; + } +} diff --git a/src/docs/Components/Dividers/previews/divider-light.preview.html b/src/docs/Components/Dividers/previews/divider-light.preview.html new file mode 100644 index 000000000..0d3e5f9be --- /dev/null +++ b/src/docs/Components/Dividers/previews/divider-light.preview.html @@ -0,0 +1,9 @@ +
+
+

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. In recusandae at + quisquam excepturi dolores deleniti aliquid porro et asperiores, quam + sequi provident quibusdam nesciunt fugit, a amet commodi, maxime unde? +

+
+
diff --git a/src/docs/Components/Dividers/previews/divider-light.preview.scss b/src/docs/Components/Dividers/previews/divider-light.preview.scss new file mode 100644 index 000000000..364cdacdc --- /dev/null +++ b/src/docs/Components/Dividers/previews/divider-light.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.divider"; + +.example { + @include set-font-face("regular"); + + display: block; + padding: $mu150; + + &__element { + @include set-divider("bottom", "light", "100%"); + + display: block; + margin: 0 auto; + min-height: $mu250; + position: relative; + } +} diff --git a/src/docs/Components/Dividers/previews/divider-lightest.preview.html b/src/docs/Components/Dividers/previews/divider-lightest.preview.html new file mode 100644 index 000000000..0d3e5f9be --- /dev/null +++ b/src/docs/Components/Dividers/previews/divider-lightest.preview.html @@ -0,0 +1,9 @@ +
+
+

+ Lorem ipsum dolor sit amet consectetur adipisicing elit. In recusandae at + quisquam excepturi dolores deleniti aliquid porro et asperiores, quam + sequi provident quibusdam nesciunt fugit, a amet commodi, maxime unde? +

+
+
diff --git a/src/docs/Components/Dividers/previews/divider-lightest.preview.scss b/src/docs/Components/Dividers/previews/divider-lightest.preview.scss new file mode 100644 index 000000000..987888628 --- /dev/null +++ b/src/docs/Components/Dividers/previews/divider-lightest.preview.scss @@ -0,0 +1,21 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.divider"; + +.example { + @include set-font-face("regular"); + + background: $color-grey-900; + color: $color-grey-000; + display: block; + padding: $mu150; + + &__element { + @include set-divider("bottom", "lightest", "100%"); + + display: block; + margin: 0 auto; + min-height: $mu250; + position: relative; + } +} diff --git a/src/docs/Components/Dividers/previews/size-variations.preview.scss b/src/docs/Components/Dividers/previews/size-variations.preview.scss index 4f5efab07..2349825e4 100644 --- a/src/docs/Components/Dividers/previews/size-variations.preview.scss +++ b/src/docs/Components/Dividers/previews/size-variations.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.divider"; .example { + @include set-font-face("regular"); + text-align: center; margin: auto; width: 90%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Flags/code.mdx b/src/docs/Components/Flags/code.mdx index aab59eb40..bfaaf4eab 100644 --- a/src/docs/Components/Flags/code.mdx +++ b/src/docs/Components/Flags/code.mdx @@ -17,9 +17,7 @@ Import the settings and the flag `scss` files. The creation of a **Flag** component in your code is done using the following HTML structure: ```html -
- Flag label -
+
Flag label
``` @@ -42,16 +40,18 @@ The creation of a **Flag** component in your code is done using the following HT example : ```html -
- Flag label -
+
Flag flag__label
-
- Flag bordered primary 02 -
+
Flag bordered primary 02
``` - +#### Solid + + + +#### Bordered + + ## Customization and mixins diff --git a/src/docs/Components/Flags/previews/bordered.preview.html b/src/docs/Components/Flags/previews/bordered.preview.html new file mode 100644 index 000000000..b173b2165 --- /dev/null +++ b/src/docs/Components/Flags/previews/bordered.preview.html @@ -0,0 +1,25 @@ +
+
+
+ Flag bordered +
+
+ +
+
+ Flag bordered dark +
+
+ +
+
+ Flag bordered light +
+
+ +
+
+ Flag bordered danger +
+
+
diff --git a/src/docs/Components/Flags/previews/bordered.preview.scss b/src/docs/Components/Flags/previews/bordered.preview.scss new file mode 100644 index 000000000..ef7c7fffb --- /dev/null +++ b/src/docs/Components/Flags/previews/bordered.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.flag"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + + &--light { + background: $color-grey-999; + padding: $mu100; + } + } +} diff --git a/src/docs/Components/Flags/previews/default.preview.scss b/src/docs/Components/Flags/previews/default.preview.scss index 2b723c4bf..b6ee05d6c 100644 --- a/src/docs/Components/Flags/previews/default.preview.scss +++ b/src/docs/Components/Flags/previews/default.preview.scss @@ -1,11 +1,8 @@ -@import "tokens"; -@import "settings-tools/all-settings"; +@import "settings-tools/_all-settings"; + @include import-font-families(); -@import "components/c.flag"; -html { - @include set-font-face(); -} +@import "components/_c.flag"; .example { margin: $mu100 auto; diff --git a/src/docs/Components/Flags/previews/flag-all.preview.scss b/src/docs/Components/Flags/previews/flag-all.preview.scss index 5b2dca116..3da51f2c8 100644 --- a/src/docs/Components/Flags/previews/flag-all.preview.scss +++ b/src/docs/Components/Flags/previews/flag-all.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.flag"; .example { diff --git a/src/docs/Components/Flags/previews/solid.preview.html b/src/docs/Components/Flags/previews/solid.preview.html new file mode 100644 index 000000000..a44168907 --- /dev/null +++ b/src/docs/Components/Flags/previews/solid.preview.html @@ -0,0 +1,25 @@ +
+
+
+ Flag solid +
+
+ +
+
+ Flag solid dark +
+
+ +
+
+ Flag solid light +
+
+ +
+
+ Flag solid danger +
+
+
diff --git a/src/docs/Components/Flags/previews/solid.preview.scss b/src/docs/Components/Flags/previews/solid.preview.scss new file mode 100644 index 000000000..ef7c7fffb --- /dev/null +++ b/src/docs/Components/Flags/previews/solid.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.flag"; + +.example { + align-items: flex-start; + display: flex; + flex-direction: column; + justify-content: space-around; + + &__item { + margin: $mu100; + + &--light { + background: $color-grey-999; + padding: $mu100; + } + } +} diff --git a/src/docs/Components/Form/Autocomplete/index.mdx b/src/docs/Components/Form/Autocomplete/index.mdx index 76d275cda..23e6411eb 100644 --- a/src/docs/Components/Form/Autocomplete/index.mdx +++ b/src/docs/Components/Form/Autocomplete/index.mdx @@ -2,13 +2,6 @@ title: 'Autocomplete' order: 1 description: 'The definition will be added soon.' -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mautocomplete' - status: 'ready' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-autocomplete' status: scss: 'ready' figma: 'ready' diff --git a/src/docs/Components/Form/Autocomplete/previews/default.preview.scss b/src/docs/Components/Form/Autocomplete/previews/default.preview.scss index 645518490..aa794cd35 100644 --- a/src/docs/Components/Form/Autocomplete/previews/default.preview.scss +++ b/src/docs/Components/Form/Autocomplete/previews/default.preview.scss @@ -1,6 +1,4 @@ -@import "tokens"; @import "settings-tools/all-settings"; -@include import-font-families(); @import "components/c.left-icon-input"; @import "components/c.text-input"; @import "components/c.tag"; @@ -8,11 +6,11 @@ @import "components/c.loader"; @import "components/c.autocomplete"; -html { - @include set-font-face(); -} +@include import-font-families(); .example { + @include set-font-face(); + height: 250px; margin: $mu200 0; padding: 0 $mu200; diff --git a/src/docs/Components/Form/Autocomplete/previews/disabled.preview.scss b/src/docs/Components/Form/Autocomplete/previews/disabled.preview.scss index 51bbbb08a..8399f338c 100644 --- a/src/docs/Components/Form/Autocomplete/previews/disabled.preview.scss +++ b/src/docs/Components/Form/Autocomplete/previews/disabled.preview.scss @@ -1,17 +1,15 @@ -@import "tokens"; @import "settings-tools/all-settings"; -@include import-font-families(); @import "components/c.left-icon-input"; @import "components/c.text-input"; @import "components/c.tag"; @import "components/c.listbox"; @import "components/c.autocomplete"; -html { - @include set-font-face(); -} +@include import-font-families(); .example { + @include set-font-face(); + height: 250px; margin: $mu200 0; padding: 0 $mu200; diff --git a/src/docs/Components/Form/Autocomplete/previews/invalid.preview.scss b/src/docs/Components/Form/Autocomplete/previews/invalid.preview.scss index 678162477..8399f338c 100644 --- a/src/docs/Components/Form/Autocomplete/previews/invalid.preview.scss +++ b/src/docs/Components/Form/Autocomplete/previews/invalid.preview.scss @@ -1,10 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.left-icon-input"; @import "components/c.text-input"; @import "components/c.tag"; @import "components/c.listbox"; @import "components/c.autocomplete"; + @include import-font-families(); .example { diff --git a/src/docs/Components/Form/Autocomplete/previews/multi.preview.scss b/src/docs/Components/Form/Autocomplete/previews/multi.preview.scss index 9edfc270f..27f476f44 100644 --- a/src/docs/Components/Form/Autocomplete/previews/multi.preview.scss +++ b/src/docs/Components/Form/Autocomplete/previews/multi.preview.scss @@ -1,6 +1,4 @@ -@import "tokens"; @import "settings-tools/all-settings"; -@include import-font-families(); @import "components/c.left-icon-input"; @import "components/c.text-input"; @import "components/c.tag"; @@ -8,11 +6,11 @@ @import "components/c.listbox"; @import "components/c.autocomplete"; -html { - @include set-font-face(); -} +@include import-font-families(); .example { + @include set-font-face(); + height: 250px; margin: $mu200 0; padding: 0 $mu200; diff --git a/src/docs/Components/Form/Checkbox/code.mdx b/src/docs/Components/Form/Checkbox/code.mdx index 94f75621d..a2b876b85 100644 --- a/src/docs/Components/Form/Checkbox/code.mdx +++ b/src/docs/Components/Form/Checkbox/code.mdx @@ -37,6 +37,8 @@ To use the checkbox pattern you have 3 main css classes to apply: - `:indeterminate` - `.is-invalid` + + Note that you can't make an indeterminate checkbox through HTML. @@ -98,7 +100,7 @@ To use the checkbox pattern in a group of elements in your form, you must use th ``` - + ### Variations @@ -112,6 +114,8 @@ If you wish, you can arrange the elements horizontally. To do so: > Note that the elements become horizontally aligned from the `m-medium` breakpoint _(768px)_. Below this resolution, the elements are arranged vertically. + + ### Behaviors #### Help text diff --git a/src/docs/Components/Form/Checkbox/index.mdx b/src/docs/Components/Form/Checkbox/index.mdx index c9f063898..51aa89ec9 100644 --- a/src/docs/Components/Form/Checkbox/index.mdx +++ b/src/docs/Components/Form/Checkbox/index.mdx @@ -30,6 +30,7 @@ status: The checkbox has two default states, checked and unchecked. Every state has a disabled and an invalid variation. + ### Indeterminate @@ -49,6 +50,8 @@ A checkbox can't be used without an associated label. + + ## Checkbox group ![Checkbox-Overview](Checkbox-Overview.png) @@ -64,7 +67,7 @@ The checkbox group is a combination of the following mentions. Please note that The label group helps the user to understand which box-es to check. - + ### Requirement @@ -76,10 +79,24 @@ Please note that this mention can also be used to say a specific input is **opti
+ + ### Help text Help text corresponds to a relevant piece of information to make sure that the user understands what is needed. + + +### Layouts + +#### Vertical group + + + +#### Horizontal group + + + > Note that the elements become horizontally aligned from the `m-medium` breakpoint _(768px)_. Below this resolution, the elements are arranged vertically. ## Validation diff --git a/src/docs/Components/Form/Checkbox/previews/checkbox-item.preview.html b/src/docs/Components/Form/Checkbox/previews/checkbox-item.preview.html new file mode 100644 index 000000000..0401e4ab1 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/checkbox-item.preview.html @@ -0,0 +1,13 @@ +
    +
  • +
    + + +
    +
  • +
diff --git a/src/docs/Components/Form/Checkbox/previews/checkbox-item.preview.scss b/src/docs/Components/Form/Checkbox/previews/checkbox-item.preview.scss new file mode 100644 index 000000000..66f5be6a7 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/checkbox-item.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: fit-content; + + &__item { + @include set-flexy (); + + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Checkbox/previews/default-states.preview.html b/src/docs/Components/Form/Checkbox/previews/default-states.preview.html new file mode 100644 index 000000000..18e889bfd --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/default-states.preview.html @@ -0,0 +1,25 @@ +
    +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
diff --git a/src/docs/Components/Form/Checkbox/previews/default-states.preview.scss b/src/docs/Components/Form/Checkbox/previews/default-states.preview.scss new file mode 100644 index 000000000..66f5be6a7 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/default-states.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: fit-content; + + &__item { + @include set-flexy (); + + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Checkbox/previews/group-default.preview.html b/src/docs/Components/Form/Checkbox/previews/group-default.preview.html new file mode 100644 index 000000000..9acd3755f --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-default.preview.html @@ -0,0 +1,54 @@ +
+
+ + Group label + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
diff --git a/src/docs/Components/Form/Checkbox/previews/group-default.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-default.preview.scss new file mode 100644 index 000000000..87c97dde3 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-default.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; +@import "components/c.fields"; + +.example { + @include set-font-face(); + + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/Checkbox/previews/group-help-light.preview.html b/src/docs/Components/Form/Checkbox/previews/group-help-light.preview.html new file mode 100644 index 000000000..c89b2648e --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-help-light.preview.html @@ -0,0 +1,60 @@ +
+
+
+ + Group label + mandatory + + Help text + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
diff --git a/src/docs/Components/Form/Checkbox/previews/group-help-light.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-help-light.preview.scss new file mode 100644 index 000000000..15780330f --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-help-light.preview.scss @@ -0,0 +1,25 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: auto; + width: 93%; + + &__title { + @include set-font-scale("07", "m"); + @include set-font-face("semi-bold"); + + background: $color-grey-100; + text-align: center; + padding: $mu100; + margin: $mu300 0 $mu100; + } + + &__container { + margin: $mu100 auto; + } +} diff --git a/src/docs/Components/Form/Checkbox/previews/group-help-text.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-help-text.preview.scss index 5e94543a9..15780330f 100644 --- a/src/docs/Components/Form/Checkbox/previews/group-help-text.preview.scss +++ b/src/docs/Components/Form/Checkbox/previews/group-help-text.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Checkbox/previews/group-indeterminate.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-indeterminate.preview.scss index 42847ed26..d67f6034c 100644 --- a/src/docs/Components/Form/Checkbox/previews/group-indeterminate.preview.scss +++ b/src/docs/Components/Form/Checkbox/previews/group-indeterminate.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Checkbox/previews/group-inline.preview.html b/src/docs/Components/Form/Checkbox/previews/group-inline.preview.html new file mode 100644 index 000000000..e2e7c3848 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-inline.preview.html @@ -0,0 +1,52 @@ +
+
+ Group label + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
diff --git a/src/docs/Components/Form/Checkbox/previews/group-inline.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-inline.preview.scss new file mode 100644 index 000000000..aada78b37 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-inline.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; +@import "components/c.fields"; + +.example { + @include set-font-face(); + + margin: $mu200 0; + padding: 0 $mu100; +} diff --git a/src/docs/Components/Form/Checkbox/previews/group-invalid-light.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-invalid-light.preview.scss index 77871cef9..423289ab6 100644 --- a/src/docs/Components/Form/Checkbox/previews/group-invalid-light.preview.scss +++ b/src/docs/Components/Form/Checkbox/previews/group-invalid-light.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; padding: $mu100; diff --git a/src/docs/Components/Form/Checkbox/previews/group-invalid.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-invalid.preview.scss index 77871cef9..423289ab6 100644 --- a/src/docs/Components/Form/Checkbox/previews/group-invalid.preview.scss +++ b/src/docs/Components/Form/Checkbox/previews/group-invalid.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; padding: $mu100; diff --git a/src/docs/Components/Form/Checkbox/previews/group-requirement-light.preview.html b/src/docs/Components/Form/Checkbox/previews/group-requirement-light.preview.html new file mode 100644 index 000000000..34002c808 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-requirement-light.preview.html @@ -0,0 +1,59 @@ +
+
+
+ + Group label + mandatory + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
diff --git a/src/docs/Components/Form/Checkbox/previews/group-requirement-light.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-requirement-light.preview.scss new file mode 100644 index 000000000..15780330f --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/group-requirement-light.preview.scss @@ -0,0 +1,25 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: auto; + width: 93%; + + &__title { + @include set-font-scale("07", "m"); + @include set-font-face("semi-bold"); + + background: $color-grey-100; + text-align: center; + padding: $mu100; + margin: $mu300 0 $mu100; + } + + &__container { + margin: $mu100 auto; + } +} diff --git a/src/docs/Components/Form/Checkbox/previews/group-requirement.preview.scss b/src/docs/Components/Form/Checkbox/previews/group-requirement.preview.scss index 5e94543a9..15780330f 100644 --- a/src/docs/Components/Form/Checkbox/previews/group-requirement.preview.scss +++ b/src/docs/Components/Form/Checkbox/previews/group-requirement.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Checkbox/previews/intro.preview.html b/src/docs/Components/Form/Checkbox/previews/intro.preview.html new file mode 100644 index 000000000..8d3ba1411 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/intro.preview.html @@ -0,0 +1,69 @@ +
    +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
+ + diff --git a/src/docs/Components/Form/Checkbox/previews/intro.preview.scss b/src/docs/Components/Form/Checkbox/previews/intro.preview.scss new file mode 100644 index 000000000..66f5be6a7 --- /dev/null +++ b/src/docs/Components/Form/Checkbox/previews/intro.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.checkbox"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: fit-content; + + &__item { + @include set-flexy (); + + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Datepicker/previews/datetime-local.preview.scss b/src/docs/Components/Form/Datepicker/previews/datetime-local.preview.scss index f3138f34d..1eef2b24d 100644 --- a/src/docs/Components/Form/Datepicker/previews/datetime-local.preview.scss +++ b/src/docs/Components/Form/Datepicker/previews/datetime-local.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.text-input"; diff --git a/src/docs/Components/Form/Datepicker/previews/default.preview.scss b/src/docs/Components/Form/Datepicker/previews/default.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Datepicker/previews/default.preview.scss +++ b/src/docs/Components/Form/Datepicker/previews/default.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Datepicker/previews/month.preview.scss b/src/docs/Components/Form/Datepicker/previews/month.preview.scss index f3138f34d..1eef2b24d 100644 --- a/src/docs/Components/Form/Datepicker/previews/month.preview.scss +++ b/src/docs/Components/Form/Datepicker/previews/month.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.text-input"; diff --git a/src/docs/Components/Form/Datepicker/previews/time.preview.scss b/src/docs/Components/Form/Datepicker/previews/time.preview.scss index f3138f34d..1eef2b24d 100644 --- a/src/docs/Components/Form/Datepicker/previews/time.preview.scss +++ b/src/docs/Components/Form/Datepicker/previews/time.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.text-input"; diff --git a/src/docs/Components/Form/Datepicker/previews/week.preview.scss b/src/docs/Components/Form/Datepicker/previews/week.preview.scss index f3138f34d..1eef2b24d 100644 --- a/src/docs/Components/Form/Datepicker/previews/week.preview.scss +++ b/src/docs/Components/Form/Datepicker/previews/week.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.text-input"; diff --git a/src/docs/Components/Form/Dropdown/index.mdx b/src/docs/Components/Form/Dropdown/index.mdx index 2e861c73c..998ceb144 100644 --- a/src/docs/Components/Form/Dropdown/index.mdx +++ b/src/docs/Components/Form/Dropdown/index.mdx @@ -2,13 +2,6 @@ title: 'Dropdown' order: 1 description: 'The definition will be added soon.' -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mdropdown' - status: 'ready' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-dropdown' status: scss: 'ready' figma: 'ready' diff --git a/src/docs/Components/Form/Dropdown/previews/default.preview.scss b/src/docs/Components/Form/Dropdown/previews/default.preview.scss index 1786460d9..78e9dbd68 100644 --- a/src/docs/Components/Form/Dropdown/previews/default.preview.scss +++ b/src/docs/Components/Form/Dropdown/previews/default.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.select"; @@ -6,10 +5,6 @@ @import "components/c.loader"; @import "components/c.dropdown"; -html { - @include set-font-face(); -} - .example { @include set-font-family(); diff --git a/src/docs/Components/Form/Dropdown/previews/disabled.preview.scss b/src/docs/Components/Form/Dropdown/previews/disabled.preview.scss index 99b230049..708302589 100644 --- a/src/docs/Components/Form/Dropdown/previews/disabled.preview.scss +++ b/src/docs/Components/Form/Dropdown/previews/disabled.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.select"; @@ -6,10 +5,6 @@ @import "components/c.listbox"; @import "components/c.dropdown"; -html { - @include set-font-face(); -} - .example { @include set-font-family(); diff --git a/src/docs/Components/Form/Dropdown/previews/invalid.preview.scss b/src/docs/Components/Form/Dropdown/previews/invalid.preview.scss index e6edcb09a..5f88d7114 100644 --- a/src/docs/Components/Form/Dropdown/previews/invalid.preview.scss +++ b/src/docs/Components/Form/Dropdown/previews/invalid.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.select"; diff --git a/src/docs/Components/Form/Dropdown/previews/multi.preview.scss b/src/docs/Components/Form/Dropdown/previews/multi.preview.scss index 99f51320a..0aa23e305 100644 --- a/src/docs/Components/Form/Dropdown/previews/multi.preview.scss +++ b/src/docs/Components/Form/Dropdown/previews/multi.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.checkbox"; @@ -7,10 +6,6 @@ @import "components/c.listbox"; @import "components/c.dropdown"; -html { - @include set-font-face(); -} - .example { @include set-font-family(); diff --git a/src/docs/Components/Form/Field/previews/fields-full.preview.scss b/src/docs/Components/Form/Field/previews/fields-full.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields-full.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields-full.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Field/previews/fields-help.preview.scss b/src/docs/Components/Form/Field/previews/fields-help.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields-help.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields-help.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Field/previews/fields-requirement.preview.scss b/src/docs/Components/Form/Field/previews/fields-requirement.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields-requirement.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields-requirement.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Field/previews/fields-sizes.preview.scss b/src/docs/Components/Form/Field/previews/fields-sizes.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields-sizes.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields-sizes.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Field/previews/fields-state.preview.scss b/src/docs/Components/Form/Field/previews/fields-state.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields-state.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields-state.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Field/previews/fields-validation.preview.scss b/src/docs/Components/Form/Field/previews/fields-validation.preview.scss index e0490ea0f..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields-validation.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields-validation.preview.scss @@ -1,15 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); - -html { - @include set-font-face(); -} - @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Field/previews/fields.preview.scss b/src/docs/Components/Form/Field/previews/fields.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/Field/previews/fields.preview.scss +++ b/src/docs/Components/Form/Field/previews/fields.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/FileUploader/code.mdx b/src/docs/Components/Form/FileUploader/code.mdx index 659846312..2fab72810 100644 --- a/src/docs/Components/Form/FileUploader/code.mdx +++ b/src/docs/Components/Form/FileUploader/code.mdx @@ -42,6 +42,7 @@ Wrap a input[type="file"] and a label inside a div and apply the following class - `focus` - `disabled` + #### Multiple files diff --git a/src/docs/Components/Form/FileUploader/previews/all-states.preview.html b/src/docs/Components/Form/FileUploader/previews/all-states.preview.html new file mode 100644 index 000000000..63a4f1a00 --- /dev/null +++ b/src/docs/Components/Form/FileUploader/previews/all-states.preview.html @@ -0,0 +1,48 @@ +
+

Hover

+
+ + +
+
+ +
+

Focus

+
+ + +
+
+ +
+

Disabled

+
+ + +
+
diff --git a/src/docs/Components/Form/FileUploader/previews/all-states.preview.scss b/src/docs/Components/Form/FileUploader/previews/all-states.preview.scss new file mode 100644 index 000000000..c291aabc7 --- /dev/null +++ b/src/docs/Components/Form/FileUploader/previews/all-states.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.file-uploader"; + +.example { + margin: $mu150; + + h2 { + @include set-font-face("regular"); + } +} diff --git a/src/docs/Components/Form/FileUploader/previews/default.preview.scss b/src/docs/Components/Form/FileUploader/previews/default.preview.scss index 19765d222..067d1be60 100644 --- a/src/docs/Components/Form/FileUploader/previews/default.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; .example { diff --git a/src/docs/Components/Form/FileUploader/previews/help-text.preview.scss b/src/docs/Components/Form/FileUploader/previews/help-text.preview.scss index 705777579..ddc8faaca 100644 --- a/src/docs/Components/Form/FileUploader/previews/help-text.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/help-text.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + padding: $mu150; } diff --git a/src/docs/Components/Form/FileUploader/previews/invalid.preview.scss b/src/docs/Components/Form/FileUploader/previews/invalid.preview.scss index 705777579..ddc8faaca 100644 --- a/src/docs/Components/Form/FileUploader/previews/invalid.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/invalid.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + padding: $mu150; } diff --git a/src/docs/Components/Form/FileUploader/previews/requirement.preview.scss b/src/docs/Components/Form/FileUploader/previews/requirement.preview.scss index 705777579..ddc8faaca 100644 --- a/src/docs/Components/Form/FileUploader/previews/requirement.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/requirement.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + padding: $mu150; } diff --git a/src/docs/Components/Form/FileUploader/previews/uploaded-files-with-errors.preview.scss b/src/docs/Components/Form/FileUploader/previews/uploaded-files-with-errors.preview.scss index 19765d222..067d1be60 100644 --- a/src/docs/Components/Form/FileUploader/previews/uploaded-files-with-errors.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/uploaded-files-with-errors.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; .example { diff --git a/src/docs/Components/Form/FileUploader/previews/uploaded-files.preview.scss b/src/docs/Components/Form/FileUploader/previews/uploaded-files.preview.scss index 19765d222..067d1be60 100644 --- a/src/docs/Components/Form/FileUploader/previews/uploaded-files.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/uploaded-files.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; .example { diff --git a/src/docs/Components/Form/FileUploader/previews/with-attribute-accept.preview.scss b/src/docs/Components/Form/FileUploader/previews/with-attribute-accept.preview.scss index 19765d222..067d1be60 100644 --- a/src/docs/Components/Form/FileUploader/previews/with-attribute-accept.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/with-attribute-accept.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; .example { diff --git a/src/docs/Components/Form/FileUploader/previews/with-attribute-multiple.preview.scss b/src/docs/Components/Form/FileUploader/previews/with-attribute-multiple.preview.scss index 19765d222..067d1be60 100644 --- a/src/docs/Components/Form/FileUploader/previews/with-attribute-multiple.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/with-attribute-multiple.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; .example { diff --git a/src/docs/Components/Form/FileUploader/previews/with-field.preview.scss b/src/docs/Components/Form/FileUploader/previews/with-field.preview.scss index 705777579..ddc8faaca 100644 --- a/src/docs/Components/Form/FileUploader/previews/with-field.preview.scss +++ b/src/docs/Components/Form/FileUploader/previews/with-field.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.file-uploader"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + padding: $mu150; } diff --git a/src/docs/Components/Form/PasswordInput/index.mdx b/src/docs/Components/Form/PasswordInput/index.mdx index aea6e6f3a..3b3da44de 100644 --- a/src/docs/Components/Form/PasswordInput/index.mdx +++ b/src/docs/Components/Form/PasswordInput/index.mdx @@ -2,16 +2,6 @@ title: 'Password input' order: 1 description: 'Password input is a necessary security feature for logging in or registering on a website.' -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/form-mpasswordinput' - status: 'ready' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-form-passwordinput' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-passwordinput' status: scss: 'ready' figma: 'ready' diff --git a/src/docs/Components/Form/PasswordInput/previews/all-cases.preview.scss b/src/docs/Components/Form/PasswordInput/previews/all-cases.preview.scss index 91acd5f6c..4698333e0 100644 --- a/src/docs/Components/Form/PasswordInput/previews/all-cases.preview.scss +++ b/src/docs/Components/Form/PasswordInput/previews/all-cases.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.password-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; &__wrapper { diff --git a/src/docs/Components/Form/PasswordInput/previews/default.preview.scss b/src/docs/Components/Form/PasswordInput/previews/default.preview.scss index cb994fec6..a9d56a9b4 100644 --- a/src/docs/Components/Form/PasswordInput/previews/default.preview.scss +++ b/src/docs/Components/Form/PasswordInput/previews/default.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.password-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/PhoneNumberInput/code.mdx b/src/docs/Components/Form/PhoneNumberInput/code.mdx index 9f19fb360..29a6350f5 100644 --- a/src/docs/Components/Form/PhoneNumberInput/code.mdx +++ b/src/docs/Components/Form/PhoneNumberInput/code.mdx @@ -1,5 +1,5 @@ --- -title: 'Code' +title: "Code" order: 2 --- @@ -8,10 +8,9 @@ order: 2 Import **the settings**, the **text-input** and the **phone-number** scss files. ```scss -@import 'tokens'; -@import 'settings-tools/all-settings'; -@import 'components/_c.text-input'; -@import 'components/_c.phone-number'; +@import "settings-tools/all-settings"; +@import "components/_c.text-input"; +@import "components/_c.phone-number"; ``` # Usage @@ -86,11 +85,10 @@ Each element of list contains: When using a phone number input with a label, you must make sure to import the fields.scss file in addition to the others: ```scss -@import 'tokens'; -@import 'settings-tools/all-settings'; -@import 'components/_c.text-input'; -@import 'components/_c.fields'; -@import 'components/_c.phone-number'; +@import "settings-tools/all-settings"; +@import "components/_c.text-input"; +@import "components/_c.fields"; +@import "components/_c.phone-number"; ``` diff --git a/src/docs/Components/Form/PhoneNumberInput/index.mdx b/src/docs/Components/Form/PhoneNumberInput/index.mdx index f627b2723..ad3e4c94d 100644 --- a/src/docs/Components/Form/PhoneNumberInput/index.mdx +++ b/src/docs/Components/Form/PhoneNumberInput/index.mdx @@ -6,9 +6,6 @@ links: vue: link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mphonenumber' status: 'ready' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-phonenumber' status: scss: 'ready' figma: 'ready' diff --git a/src/docs/Components/Form/PhoneNumberInput/previews/basic.preview.scss b/src/docs/Components/Form/PhoneNumberInput/previews/basic.preview.scss index 819ada203..c065ff57c 100644 --- a/src/docs/Components/Form/PhoneNumberInput/previews/basic.preview.scss +++ b/src/docs/Components/Form/PhoneNumberInput/previews/basic.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.phone-number"; .example { + @include set-font-face(); + height: 12rem; margin: $mu200 0; padding: 0 $mu200; diff --git a/src/docs/Components/Form/PhoneNumberInput/previews/label.preview.scss b/src/docs/Components/Form/PhoneNumberInput/previews/label.preview.scss index aef8bf49a..99e3fadec 100644 --- a/src/docs/Components/Form/PhoneNumberInput/previews/label.preview.scss +++ b/src/docs/Components/Form/PhoneNumberInput/previews/label.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; @import "components/c.phone-number"; .example { + @include set-font-face(); + height: 11rem; margin: $mu200 0; padding: 0 $mu200; diff --git a/src/docs/Components/Form/PhoneNumberInput/previews/opened.preview.scss b/src/docs/Components/Form/PhoneNumberInput/previews/opened.preview.scss index 819ada203..c065ff57c 100644 --- a/src/docs/Components/Form/PhoneNumberInput/previews/opened.preview.scss +++ b/src/docs/Components/Form/PhoneNumberInput/previews/opened.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.phone-number"; .example { + @include set-font-face(); + height: 12rem; margin: $mu200 0; padding: 0 $mu200; diff --git a/src/docs/Components/Form/QuantitySelector/previews/basic.preview.scss b/src/docs/Components/Form/QuantitySelector/previews/basic.preview.scss index ac15cfa38..b1960caeb 100644 --- a/src/docs/Components/Form/QuantitySelector/previews/basic.preview.scss +++ b/src/docs/Components/Form/QuantitySelector/previews/basic.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.button"; @import "components/c.quantity-selector"; diff --git a/src/docs/Components/Form/QuantitySelector/previews/medium-input.preview.scss b/src/docs/Components/Form/QuantitySelector/previews/medium-input.preview.scss index 20f133dac..3a85927d3 100644 --- a/src/docs/Components/Form/QuantitySelector/previews/medium-input.preview.scss +++ b/src/docs/Components/Form/QuantitySelector/previews/medium-input.preview.scss @@ -1,15 +1,13 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; @import "components/c.button"; @import "components/c.quantity-selector"; .example { + @include set-font-face(); + display: flex; align-items: center; justify-content: center; diff --git a/src/docs/Components/Form/QuantitySelector/previews/minimal.preview.scss b/src/docs/Components/Form/QuantitySelector/previews/minimal.preview.scss index 20f133dac..5ab41e9ee 100644 --- a/src/docs/Components/Form/QuantitySelector/previews/minimal.preview.scss +++ b/src/docs/Components/Form/QuantitySelector/previews/minimal.preview.scss @@ -1,15 +1,15 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; @import "components/c.button"; @import "components/c.quantity-selector"; + + .example { + @include set-font-face(); + display: flex; align-items: center; justify-content: center; diff --git a/src/docs/Components/Form/QuantitySelector/previews/with-label.preview.scss b/src/docs/Components/Form/QuantitySelector/previews/with-label.preview.scss index 20f133dac..5ab41e9ee 100644 --- a/src/docs/Components/Form/QuantitySelector/previews/with-label.preview.scss +++ b/src/docs/Components/Form/QuantitySelector/previews/with-label.preview.scss @@ -1,15 +1,15 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; @import "components/c.button"; @import "components/c.quantity-selector"; + + .example { + @include set-font-face(); + display: flex; align-items: center; justify-content: center; diff --git a/src/docs/Components/Form/Radio/code.mdx b/src/docs/Components/Form/Radio/code.mdx index afa0beb19..fc45710e7 100644 --- a/src/docs/Components/Form/Radio/code.mdx +++ b/src/docs/Components/Form/Radio/code.mdx @@ -30,6 +30,8 @@ To create a classic radio you have 3 main css classes to apply: ``` + + ### States Depending on the context of use, the radio buttons can have several states: @@ -122,6 +124,8 @@ To use the radio pattern in a group of elements in your form, you must use the f ``` + + ### Variations #### Horizontal group diff --git a/src/docs/Components/Form/Radio/index.mdx b/src/docs/Components/Form/Radio/index.mdx index 5ac77b355..3ab91df17 100644 --- a/src/docs/Components/Form/Radio/index.mdx +++ b/src/docs/Components/Form/Radio/index.mdx @@ -22,7 +22,7 @@ status: > A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone. - + ## Overview @@ -45,7 +45,7 @@ Radio button group is a combination of the following mentions. Please note that The label group helps the user to understand which radio to check. - + ### Requirement @@ -57,10 +57,24 @@ Please note that this mention can also be used to say a specific input is **opti
+ + ### Help text Help text corresponds to a relevant piece of information to make sure the user understands what is needed. + + +## Layouts + +### Vertical group + + + +### Horizontal group + + + > Note that the elements become horizontally aligned from the `m-medium` breakpoint _(768px)_. Below this resolution, the elements are arranged vertically. ## Validation diff --git a/src/docs/Components/Form/Radio/previews/group-default.preview.html b/src/docs/Components/Form/Radio/previews/group-default.preview.html new file mode 100644 index 000000000..f109ca640 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-default.preview.html @@ -0,0 +1,54 @@ +
+
+ + Group label + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
diff --git a/src/docs/Components/Form/Radio/previews/group-default.preview.scss b/src/docs/Components/Form/Radio/previews/group-default.preview.scss new file mode 100644 index 000000000..e143fcc1d --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-default.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/Radio/previews/group-help-light.preview.html b/src/docs/Components/Form/Radio/previews/group-help-light.preview.html new file mode 100644 index 000000000..33bafb144 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-help-light.preview.html @@ -0,0 +1,57 @@ +
+
+ + Group label + + + Help text + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
diff --git a/src/docs/Components/Form/Radio/previews/group-help-light.preview.scss b/src/docs/Components/Form/Radio/previews/group-help-light.preview.scss new file mode 100644 index 000000000..e143fcc1d --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-help-light.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/Radio/previews/group-help-text.preview.scss b/src/docs/Components/Form/Radio/previews/group-help-text.preview.scss index 355550f79..a990e311c 100644 --- a/src/docs/Components/Form/Radio/previews/group-help-text.preview.scss +++ b/src/docs/Components/Form/Radio/previews/group-help-text.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Radio/previews/group-inline.preview.html b/src/docs/Components/Form/Radio/previews/group-inline.preview.html new file mode 100644 index 000000000..af666ec9a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-inline.preview.html @@ -0,0 +1,54 @@ +
+
+ + Group label + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
diff --git a/src/docs/Components/Form/Radio/previews/group-inline.preview.scss b/src/docs/Components/Form/Radio/previews/group-inline.preview.scss new file mode 100644 index 000000000..e143fcc1d --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-inline.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/Radio/previews/group-invalid-light.preview.scss b/src/docs/Components/Form/Radio/previews/group-invalid-light.preview.scss index f815e67e3..975c2521e 100644 --- a/src/docs/Components/Form/Radio/previews/group-invalid-light.preview.scss +++ b/src/docs/Components/Form/Radio/previews/group-invalid-light.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; padding: $mu100; diff --git a/src/docs/Components/Form/Radio/previews/group-invalid.preview.scss b/src/docs/Components/Form/Radio/previews/group-invalid.preview.scss index f815e67e3..975c2521e 100644 --- a/src/docs/Components/Form/Radio/previews/group-invalid.preview.scss +++ b/src/docs/Components/Form/Radio/previews/group-invalid.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; padding: $mu100; diff --git a/src/docs/Components/Form/Radio/previews/group-requirement-light.preview.html b/src/docs/Components/Form/Radio/previews/group-requirement-light.preview.html new file mode 100644 index 000000000..159a4f24e --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-requirement-light.preview.html @@ -0,0 +1,57 @@ +
+
+ + Group label + + mandatory + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
diff --git a/src/docs/Components/Form/Radio/previews/group-requirement-light.preview.scss b/src/docs/Components/Form/Radio/previews/group-requirement-light.preview.scss new file mode 100644 index 000000000..e143fcc1d --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-requirement-light.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/Radio/previews/group-requirement.preview.html b/src/docs/Components/Form/Radio/previews/group-requirement.preview.html new file mode 100644 index 000000000..f8299ebf2 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-requirement.preview.html @@ -0,0 +1,113 @@ +
+
+ Default +
+ +
+
+ + Legend + + mandatory + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+ +
+ Horizontal +
+ +
+
+ + Legend + + mandatory + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
diff --git a/src/docs/Components/Form/Radio/previews/group-requirement.preview.scss b/src/docs/Components/Form/Radio/previews/group-requirement.preview.scss new file mode 100644 index 000000000..a990e311c --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/group-requirement.preview.scss @@ -0,0 +1,25 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; +@import "components/c.fields"; + +.example { + @include set-font-face("regular"); + + margin: auto; + width: 93%; + + &__title { + @include set-font-scale("07", "m"); + @include set-font-face("semi-bold"); + + background: $color-grey-100; + text-align: center; + padding: $mu100; + margin: $mu300 0 $mu100; + } + + &__container { + margin: $mu100 auto; + } +} diff --git a/src/docs/Components/Form/Radio/previews/intro.preview.html b/src/docs/Components/Form/Radio/previews/intro.preview.html new file mode 100644 index 000000000..16ed2af09 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/intro.preview.html @@ -0,0 +1,37 @@ +
    +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
  • +
    + + +
    +
  • +
diff --git a/src/docs/Components/Form/Radio/previews/intro.preview.scss b/src/docs/Components/Form/Radio/previews/intro.preview.scss new file mode 100644 index 000000000..92940441b --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/intro.preview.scss @@ -0,0 +1,19 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; +@import "typography/t.all-base-typography"; +@import "typography/t.bodys"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Radio/previews/radio-default.preview.html b/src/docs/Components/Form/Radio/previews/radio-default.preview.html new file mode 100644 index 000000000..8b85ea670 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-default.preview.html @@ -0,0 +1,13 @@ +
    +
  • +
    + + +
    +
  • +
diff --git a/src/docs/Components/Form/Radio/previews/radio-default.preview.scss b/src/docs/Components/Form/Radio/previews/radio-default.preview.scss new file mode 100644 index 000000000..15483fc8a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-default.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Radio/previews/radio-disabled-state.preview.html b/src/docs/Components/Form/Radio/previews/radio-disabled-state.preview.html new file mode 100644 index 000000000..46f0b1824 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-disabled-state.preview.html @@ -0,0 +1,5 @@ +
    +
  • + +
  • +
\ No newline at end of file diff --git a/src/docs/Components/Form/Radio/previews/radio-disabled-state.preview.scss b/src/docs/Components/Form/Radio/previews/radio-disabled-state.preview.scss new file mode 100644 index 000000000..15483fc8a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-disabled-state.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Radio/previews/radio-focus-state.preview.html b/src/docs/Components/Form/Radio/previews/radio-focus-state.preview.html new file mode 100644 index 000000000..d0cae18d5 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-focus-state.preview.html @@ -0,0 +1,5 @@ +
    +
  • + +
  • +
\ No newline at end of file diff --git a/src/docs/Components/Form/Radio/previews/radio-focus-state.preview.scss b/src/docs/Components/Form/Radio/previews/radio-focus-state.preview.scss new file mode 100644 index 000000000..15483fc8a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-focus-state.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Radio/previews/radio-hover-state.preview.html b/src/docs/Components/Form/Radio/previews/radio-hover-state.preview.html new file mode 100644 index 000000000..3d19d053b --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-hover-state.preview.html @@ -0,0 +1,5 @@ +
    +
  • + +
  • +
\ No newline at end of file diff --git a/src/docs/Components/Form/Radio/previews/radio-hover-state.preview.scss b/src/docs/Components/Form/Radio/previews/radio-hover-state.preview.scss new file mode 100644 index 000000000..15483fc8a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-hover-state.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Radio/previews/radio-invalid-state.preview.html b/src/docs/Components/Form/Radio/previews/radio-invalid-state.preview.html new file mode 100644 index 000000000..53faa3196 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-invalid-state.preview.html @@ -0,0 +1,5 @@ +
    +
  • + +
  • +
\ No newline at end of file diff --git a/src/docs/Components/Form/Radio/previews/radio-invalid-state.preview.scss b/src/docs/Components/Form/Radio/previews/radio-invalid-state.preview.scss new file mode 100644 index 000000000..15483fc8a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-invalid-state.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Radio/previews/radio-states.preview.scss b/src/docs/Components/Form/Radio/previews/radio-states.preview.scss index 718c00986..15483fc8a 100644 --- a/src/docs/Components/Form/Radio/previews/radio-states.preview.scss +++ b/src/docs/Components/Form/Radio/previews/radio-states.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; .example { + @include set-font-face("regular"); + margin: $mu200 auto; padding: 0 $mu200; width: 40vw; diff --git a/src/docs/Components/Form/Radio/previews/radio-valid-state.preview.html b/src/docs/Components/Form/Radio/previews/radio-valid-state.preview.html new file mode 100644 index 000000000..2dd510cb7 --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-valid-state.preview.html @@ -0,0 +1,5 @@ +
    +
  • + +
  • +
\ No newline at end of file diff --git a/src/docs/Components/Form/Radio/previews/radio-valid-state.preview.scss b/src/docs/Components/Form/Radio/previews/radio-valid-state.preview.scss new file mode 100644 index 000000000..15483fc8a --- /dev/null +++ b/src/docs/Components/Form/Radio/previews/radio-valid-state.preview.scss @@ -0,0 +1,17 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.radio"; + +.example { + @include set-font-face("regular"); + + margin: $mu200 auto; + padding: 0 $mu200; + width: 40vw; + + &__list-item { + list-style-type: none; + margin: $mu100 0; + text-align: center; + } +} diff --git a/src/docs/Components/Form/Select/previews/default.preview.scss b/src/docs/Components/Form/Select/previews/default.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/default.preview.scss +++ b/src/docs/Components/Form/Select/previews/default.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/disabled.preview.scss b/src/docs/Components/Form/Select/previews/disabled.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/disabled.preview.scss +++ b/src/docs/Components/Form/Select/previews/disabled.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/help-text.preview.scss b/src/docs/Components/Form/Select/previews/help-text.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/help-text.preview.scss +++ b/src/docs/Components/Form/Select/previews/help-text.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/invalid.preview.scss b/src/docs/Components/Form/Select/previews/invalid.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/invalid.preview.scss +++ b/src/docs/Components/Form/Select/previews/invalid.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/requirement.preview.scss b/src/docs/Components/Form/Select/previews/requirement.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/requirement.preview.scss +++ b/src/docs/Components/Form/Select/previews/requirement.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/select-all-states.preview.scss b/src/docs/Components/Form/Select/previews/select-all-states.preview.scss index ecc33ef52..9591e55f6 100644 --- a/src/docs/Components/Form/Select/previews/select-all-states.preview.scss +++ b/src/docs/Components/Form/Select/previews/select-all-states.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; .example { + @include set-font-face("regular"); + text-align: center; margin: auto; width: 90%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Select/previews/select-full.preview.scss b/src/docs/Components/Form/Select/previews/select-full.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/select-full.preview.scss +++ b/src/docs/Components/Form/Select/previews/select-full.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/single.preview.scss b/src/docs/Components/Form/Select/previews/single.preview.scss index d97882495..ae21e56ff 100644 --- a/src/docs/Components/Form/Select/previews/single.preview.scss +++ b/src/docs/Components/Form/Select/previews/single.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/sizes.preview.scss b/src/docs/Components/Form/Select/previews/sizes.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/sizes.preview.scss +++ b/src/docs/Components/Form/Select/previews/sizes.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/valid.preview.scss b/src/docs/Components/Form/Select/previews/valid.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/valid.preview.scss +++ b/src/docs/Components/Form/Select/previews/valid.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Select/previews/validation.preview.scss b/src/docs/Components/Form/Select/previews/validation.preview.scss index 47fbf5056..aaa4b06cb 100644 --- a/src/docs/Components/Form/Select/previews/validation.preview.scss +++ b/src/docs/Components/Form/Select/previews/validation.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/default.preview.scss b/src/docs/Components/Form/TextArea/previews/default.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/default.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/default.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/disabled.preview.scss b/src/docs/Components/Form/TextArea/previews/disabled.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/disabled.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/disabled.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/help-text.preview.scss b/src/docs/Components/Form/TextArea/previews/help-text.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/help-text.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/help-text.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/invalid.preview.scss b/src/docs/Components/Form/TextArea/previews/invalid.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/invalid.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/invalid.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/requirement.preview.scss b/src/docs/Components/Form/TextArea/previews/requirement.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/requirement.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/requirement.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/single.preview.scss b/src/docs/Components/Form/TextArea/previews/single.preview.scss index e9a395944..66e22cc43 100644 --- a/src/docs/Components/Form/TextArea/previews/single.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/single.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/textarea-all.preview.scss b/src/docs/Components/Form/TextArea/previews/textarea-all.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/textarea-all.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/textarea-all.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/textarea-full.preview.scss b/src/docs/Components/Form/TextArea/previews/textarea-full.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/textarea-full.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/textarea-full.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextArea/previews/valid.preview.scss b/src/docs/Components/Form/TextArea/previews/valid.preview.scss index 142059a7d..b8b5753da 100644 --- a/src/docs/Components/Form/TextArea/previews/valid.preview.scss +++ b/src/docs/Components/Form/TextArea/previews/valid.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.textarea"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextInput/code.mdx b/src/docs/Components/Form/TextInput/code.mdx index 8a210bd4d..7721435dc 100644 --- a/src/docs/Components/Form/TextInput/code.mdx +++ b/src/docs/Components/Form/TextInput/code.mdx @@ -84,6 +84,8 @@ You can use one of the 2 available sizes : - `.is-valid` - `.is-invalid` + + #### Small variations diff --git a/src/docs/Components/Form/TextInput/previews/input-default-disabled.preview.scss b/src/docs/Components/Form/TextInput/previews/input-default-disabled.preview.scss index 912272406..7d8a32918 100644 --- a/src/docs/Components/Form/TextInput/previews/input-default-disabled.preview.scss +++ b/src/docs/Components/Form/TextInput/previews/input-default-disabled.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; .example { diff --git a/src/docs/Components/Form/TextInput/previews/input-default-event.preview.html b/src/docs/Components/Form/TextInput/previews/input-default-event.preview.html new file mode 100644 index 000000000..7c3f7540e --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-default-event.preview.html @@ -0,0 +1,6 @@ +
+ +
+
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-default-event.preview.scss b/src/docs/Components/Form/TextInput/previews/input-default-event.preview.scss new file mode 100644 index 000000000..7d8a32918 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-default-event.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-default.preview.scss b/src/docs/Components/Form/TextInput/previews/input-default.preview.scss index ec6734d82..1eef2b24d 100644 --- a/src/docs/Components/Form/TextInput/previews/input-default.preview.scss +++ b/src/docs/Components/Form/TextInput/previews/input-default.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextInput/previews/input-disabled-state.preview.html b/src/docs/Components/Form/TextInput/previews/input-disabled-state.preview.html new file mode 100644 index 000000000..64f105a3b --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-disabled-state.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-disabled-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-disabled-state.preview.scss new file mode 100644 index 000000000..dd229e7ad --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-disabled-state.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu100 0; + padding: 0 $mu400; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-focus-state.preview.html b/src/docs/Components/Form/TextInput/previews/input-focus-state.preview.html new file mode 100644 index 000000000..7e008efb2 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-focus-state.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-focus-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-focus-state.preview.scss new file mode 100644 index 000000000..dd229e7ad --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-focus-state.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu100 0; + padding: 0 $mu400; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-hover-state.preview.html b/src/docs/Components/Form/TextInput/previews/input-hover-state.preview.html new file mode 100644 index 000000000..bc8f8dd3a --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-hover-state.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-hover-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-hover-state.preview.scss new file mode 100644 index 000000000..dd229e7ad --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-hover-state.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu100 0; + padding: 0 $mu400; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-invalid-event.preview.html b/src/docs/Components/Form/TextInput/previews/input-invalid-event.preview.html new file mode 100644 index 000000000..48297f3c1 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-invalid-event.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-invalid-event.preview.scss b/src/docs/Components/Form/TextInput/previews/input-invalid-event.preview.scss new file mode 100644 index 000000000..7d8a32918 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-invalid-event.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-invalid-state.preview.html b/src/docs/Components/Form/TextInput/previews/input-invalid-state.preview.html new file mode 100644 index 000000000..cd9e5db4c --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-invalid-state.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-invalid-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-invalid-state.preview.scss new file mode 100644 index 000000000..dd229e7ad --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-invalid-state.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu100 0; + padding: 0 $mu400; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-invalid.preview.html b/src/docs/Components/Form/TextInput/previews/input-invalid.preview.html new file mode 100644 index 000000000..f134405e8 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-invalid.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-invalid.preview.scss b/src/docs/Components/Form/TextInput/previews/input-invalid.preview.scss new file mode 100644 index 000000000..7d8a32918 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-invalid.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-preview.preview.html b/src/docs/Components/Form/TextInput/previews/input-preview.preview.html new file mode 100644 index 000000000..f57464d88 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-preview.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-preview.preview.scss b/src/docs/Components/Form/TextInput/previews/input-preview.preview.scss new file mode 100644 index 000000000..dd229e7ad --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-preview.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu100 0; + padding: 0 $mu400; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-sizes.preview.scss b/src/docs/Components/Form/TextInput/previews/input-sizes.preview.scss index 635514530..8bd4a617a 100644 --- a/src/docs/Components/Form/TextInput/previews/input-sizes.preview.scss +++ b/src/docs/Components/Form/TextInput/previews/input-sizes.preview.scss @@ -1,18 +1,16 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.fields"; .example { + @include set-font-face(); + padding: $mu250; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Form/TextInput/previews/input-small-left-icon.preview.scss b/src/docs/Components/Form/TextInput/previews/input-small-left-icon.preview.scss index 7ad88cc93..98b43f3d8 100644 --- a/src/docs/Components/Form/TextInput/previews/input-small-left-icon.preview.scss +++ b/src/docs/Components/Form/TextInput/previews/input-small-left-icon.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.left-icon-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/TextInput/previews/input-small-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-small-state.preview.scss index 912272406..7d8a32918 100644 --- a/src/docs/Components/Form/TextInput/previews/input-small-state.preview.scss +++ b/src/docs/Components/Form/TextInput/previews/input-small-state.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; .example { diff --git a/src/docs/Components/Form/TextInput/previews/input-state.preview.html b/src/docs/Components/Form/TextInput/previews/input-state.preview.html new file mode 100644 index 000000000..91cc00e4c --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-state.preview.html @@ -0,0 +1,15 @@ +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-state.preview.scss new file mode 100644 index 000000000..7d8a32918 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-state.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-valid-event.preview.html b/src/docs/Components/Form/TextInput/previews/input-valid-event.preview.html new file mode 100644 index 000000000..8caadcf39 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-valid-event.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-valid-event.preview.scss b/src/docs/Components/Form/TextInput/previews/input-valid-event.preview.scss new file mode 100644 index 000000000..7d8a32918 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-valid-event.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-valid-state.preview.html b/src/docs/Components/Form/TextInput/previews/input-valid-state.preview.html new file mode 100644 index 000000000..134eff432 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-valid-state.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-valid-state.preview.scss b/src/docs/Components/Form/TextInput/previews/input-valid-state.preview.scss new file mode 100644 index 000000000..dd229e7ad --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-valid-state.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu100 0; + padding: 0 $mu400; +} diff --git a/src/docs/Components/Form/TextInput/previews/input-valid.preview.html b/src/docs/Components/Form/TextInput/previews/input-valid.preview.html new file mode 100644 index 000000000..0d0ff97a3 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-valid.preview.html @@ -0,0 +1,3 @@ +
+ +
\ No newline at end of file diff --git a/src/docs/Components/Form/TextInput/previews/input-valid.preview.scss b/src/docs/Components/Form/TextInput/previews/input-valid.preview.scss new file mode 100644 index 000000000..7d8a32918 --- /dev/null +++ b/src/docs/Components/Form/TextInput/previews/input-valid.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.text-input"; + +.example { + margin: $mu200 0; + padding: 0 $mu200; +} diff --git a/src/docs/Components/Form/TextInput/previews/left-icon-input.preview.scss b/src/docs/Components/Form/TextInput/previews/left-icon-input.preview.scss index 7ad88cc93..98b43f3d8 100644 --- a/src/docs/Components/Form/TextInput/previews/left-icon-input.preview.scss +++ b/src/docs/Components/Form/TextInput/previews/left-icon-input.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.text-input"; @import "components/c.left-icon-input"; @import "components/c.fields"; .example { + @include set-font-face(); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Toggle/code.mdx b/src/docs/Components/Form/Toggle/code.mdx index 7df17cd87..5a5129da4 100644 --- a/src/docs/Components/Form/Toggle/code.mdx +++ b/src/docs/Components/Form/Toggle/code.mdx @@ -1,5 +1,5 @@ --- -title: 'Code' +title: "Code" order: 2 --- @@ -10,10 +10,9 @@ order: 2 Import **the settings** and **the toggle** `scss` files. ```scss -@import 'tokens'; -@import 'settings-tools/all-settings'; +@import "settings-tools/all-settings"; -@import 'components/_c.toggle'; +@import "components/_c.toggle"; ``` ### Basic usage @@ -113,12 +112,11 @@ Don't forget to add the attribute `aria-hidden="true"` on the `mc-toggle__state` Import **the settings**, **the toggle** and **the fields** scss files. ```scss -@import 'tokens'; -@import 'settings-tools/all-settings'; +@import "settings-tools/all-settings"; -@import 'components/_c.toggle'; +@import "components/_c.toggle"; -@import 'components/_c.fields'; +@import "components/_c.fields"; ``` > Note that the import order is important to get the right rendering of the component. @@ -213,22 +211,22 @@ If you want to add a toggle size, update the `$toggle-sizes` map after the `all- example : ```scss -@import 'settings/all-settings'; +@import "settings/all-settings"; $toggle-sizes: map-merge( $toggle-sizes, ( - 'xs': ( - 'width': 2, - 'height': 1, + "xs": ( + "width": 2, + "height": 1, ), - 'l': ( - 'width': 6, - 'height': 3, + "l": ( + "width": 6, + "height": 3, ), ) ); -@import 'components/_c.toggles'; +@import "components/_c.toggles"; ``` diff --git a/src/docs/Components/Form/Toggle/previews/Toggle-item.preview.scss b/src/docs/Components/Form/Toggle/previews/Toggle-item.preview.scss index f3d14d74a..e18e659c1 100644 --- a/src/docs/Components/Form/Toggle/previews/Toggle-item.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/Toggle-item.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @@ -7,7 +6,7 @@ } .example { - @include set-font-face(); + @include set-font-face("regular"); @import "components/c.toggle"; margin: $mu200; diff --git a/src/docs/Components/Form/Toggle/previews/Toggle.preview.scss b/src/docs/Components/Form/Toggle/previews/Toggle.preview.scss index bd3375bb7..e8adf38e0 100644 --- a/src/docs/Components/Form/Toggle/previews/Toggle.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/Toggle.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,5 +7,7 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/group-default.preview.scss b/src/docs/Components/Form/Toggle/previews/group-default.preview.scss index 12de053af..9fe349960 100644 --- a/src/docs/Components/Form/Toggle/previews/group-default.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/group-default.preview.scss @@ -1,13 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: $mu200 0; padding: 0 $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/group-help-text-light.preview.scss b/src/docs/Components/Form/Toggle/previews/group-help-text-light.preview.scss index bf48c2af1..6d0a873b6 100644 --- a/src/docs/Components/Form/Toggle/previews/group-help-text-light.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/group-help-text-light.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Toggle/previews/group-help-text.preview.scss b/src/docs/Components/Form/Toggle/previews/group-help-text.preview.scss index bf48c2af1..6d0a873b6 100644 --- a/src/docs/Components/Form/Toggle/previews/group-help-text.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/group-help-text.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Toggle/previews/group-requirement-light.preview.scss b/src/docs/Components/Form/Toggle/previews/group-requirement-light.preview.scss index bf48c2af1..6d0a873b6 100644 --- a/src/docs/Components/Form/Toggle/previews/group-requirement-light.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/group-requirement-light.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Toggle/previews/group-requirement.preview.scss b/src/docs/Components/Form/Toggle/previews/group-requirement.preview.scss index bf48c2af1..6d0a873b6 100644 --- a/src/docs/Components/Form/Toggle/previews/group-requirement.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/group-requirement.preview.scss @@ -1,19 +1,17 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; @import "components/c.fields"; .example { + @include set-font-face("regular"); + margin: auto; width: 93%; &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Form/Toggle/previews/hide-label.preview.scss b/src/docs/Components/Form/Toggle/previews/hide-label.preview.scss index bd3375bb7..e8adf38e0 100644 --- a/src/docs/Components/Form/Toggle/previews/hide-label.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/hide-label.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,5 +7,7 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/toggle-default-2lines.preview.scss b/src/docs/Components/Form/Toggle/previews/toggle-default-2lines.preview.scss index 49d2ea95b..6f8360477 100644 --- a/src/docs/Components/Form/Toggle/previews/toggle-default-2lines.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/toggle-default-2lines.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,6 +7,8 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/toggle-default.preview.scss b/src/docs/Components/Form/Toggle/previews/toggle-default.preview.scss index bd3375bb7..e8adf38e0 100644 --- a/src/docs/Components/Form/Toggle/previews/toggle-default.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/toggle-default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,5 +7,7 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/toggle-extend-sizes.preview.scss b/src/docs/Components/Form/Toggle/previews/toggle-extend-sizes.preview.scss index f40296af5..aa08aab69 100644 --- a/src/docs/Components/Form/Toggle/previews/toggle-extend-sizes.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/toggle-extend-sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} $toggle-sizes: map-merge( $toggle-sizes, @@ -26,5 +22,7 @@ $toggle-sizes: map-merge( } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/toggle-sizes.preview.scss b/src/docs/Components/Form/Toggle/previews/toggle-sizes.preview.scss index bd3375bb7..e8adf38e0 100644 --- a/src/docs/Components/Form/Toggle/previews/toggle-sizes.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/toggle-sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,5 +7,7 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/toggle-states-label.preview.scss b/src/docs/Components/Form/Toggle/previews/toggle-states-label.preview.scss index bd3375bb7..e8adf38e0 100644 --- a/src/docs/Components/Form/Toggle/previews/toggle-states-label.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/toggle-states-label.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,5 +7,7 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Form/Toggle/previews/toggle-states.preview.scss b/src/docs/Components/Form/Toggle/previews/toggle-states.preview.scss index bd3375bb7..e8adf38e0 100644 --- a/src/docs/Components/Form/Toggle/previews/toggle-states.preview.scss +++ b/src/docs/Components/Form/Toggle/previews/toggle-states.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.toggle"; * { @@ -11,5 +7,7 @@ html { } .example { + @include set-font-face("regular"); + margin: $mu200; } diff --git a/src/docs/Components/Heading/index.mdx b/src/docs/Components/Heading/index.mdx index 7e0915412..f60c45dd5 100644 --- a/src/docs/Components/Heading/index.mdx +++ b/src/docs/Components/Heading/index.mdx @@ -2,13 +2,6 @@ title: 'Heading' order: 1 description: 'The heading provides basic typographic styles for your page titles, also known as H1. Each heading has its own sizes depending on the breakpoints.' -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mheading' - status: 'ready' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-heading' status: figma: 'ready' scss: 'ready' diff --git a/src/docs/Components/Heading/previews/Heading-alignment.preview.scss b/src/docs/Components/Heading/previews/Heading-alignment.preview.scss index 40a2c73ae..9fbf591f1 100644 --- a/src/docs/Components/Heading/previews/Heading-alignment.preview.scss +++ b/src/docs/Components/Heading/previews/Heading-alignment.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/Heading-base.preview.scss b/src/docs/Components/Heading/previews/Heading-base.preview.scss index 33989a8ff..bce559327 100644 --- a/src/docs/Components/Heading/previews/Heading-base.preview.scss +++ b/src/docs/Components/Heading/previews/Heading-base.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/Heading-colors.preview.scss b/src/docs/Components/Heading/previews/Heading-colors.preview.scss index 97c3c8e78..6553be0e2 100644 --- a/src/docs/Components/Heading/previews/Heading-colors.preview.scss +++ b/src/docs/Components/Heading/previews/Heading-colors.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/Heading-sizes.preview.scss b/src/docs/Components/Heading/previews/Heading-sizes.preview.scss index 294539221..eb0b5d749 100644 --- a/src/docs/Components/Heading/previews/Heading-sizes.preview.scss +++ b/src/docs/Components/Heading/previews/Heading-sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { @@ -17,7 +13,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; text-align: center; diff --git a/src/docs/Components/Heading/previews/Heading-underlines.preview.scss b/src/docs/Components/Heading/previews/Heading-underlines.preview.scss index e65ebbfa1..fd9bdea42 100644 --- a/src/docs/Components/Heading/previews/Heading-underlines.preview.scss +++ b/src/docs/Components/Heading/previews/Heading-underlines.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/Heading-weight.preview.scss b/src/docs/Components/Heading/previews/Heading-weight.preview.scss index 40a2c73ae..9fbf591f1 100644 --- a/src/docs/Components/Heading/previews/Heading-weight.preview.scss +++ b/src/docs/Components/Heading/previews/Heading-weight.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/HeadingLarge.preview.scss b/src/docs/Components/Heading/previews/HeadingLarge.preview.scss index 33989a8ff..bce559327 100644 --- a/src/docs/Components/Heading/previews/HeadingLarge.preview.scss +++ b/src/docs/Components/Heading/previews/HeadingLarge.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/HeadingMedium.preview.scss b/src/docs/Components/Heading/previews/HeadingMedium.preview.scss index 33989a8ff..bce559327 100644 --- a/src/docs/Components/Heading/previews/HeadingMedium.preview.scss +++ b/src/docs/Components/Heading/previews/HeadingMedium.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Heading/previews/HeadingSmall.preview.scss b/src/docs/Components/Heading/previews/HeadingSmall.preview.scss index 33989a8ff..bce559327 100644 --- a/src/docs/Components/Heading/previews/HeadingSmall.preview.scss +++ b/src/docs/Components/Heading/previews/HeadingSmall.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.headings"; .example { diff --git a/src/docs/Components/Hero/previews/basic.preview.scss b/src/docs/Components/Hero/previews/basic.preview.scss index 6fbde9962..9d382aeb0 100644 --- a/src/docs/Components/Hero/previews/basic.preview.scss +++ b/src/docs/Components/Hero/previews/basic.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Hero/previews/boxed-content-l.preview.scss b/src/docs/Components/Hero/previews/boxed-content-l.preview.scss index a9415735a..374103ab1 100644 --- a/src/docs/Components/Hero/previews/boxed-content-l.preview.scss +++ b/src/docs/Components/Hero/previews/boxed-content-l.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Hero/previews/boxed-content.preview.scss b/src/docs/Components/Hero/previews/boxed-content.preview.scss index a9415735a..374103ab1 100644 --- a/src/docs/Components/Hero/previews/boxed-content.preview.scss +++ b/src/docs/Components/Hero/previews/boxed-content.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Hero/previews/fixed.preview.scss b/src/docs/Components/Hero/previews/fixed.preview.scss index 6fbde9962..9d382aeb0 100644 --- a/src/docs/Components/Hero/previews/fixed.preview.scss +++ b/src/docs/Components/Hero/previews/fixed.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Hero/previews/title-centered.preview.scss b/src/docs/Components/Hero/previews/title-centered.preview.scss index 6fbde9962..9d382aeb0 100644 --- a/src/docs/Components/Hero/previews/title-centered.preview.scss +++ b/src/docs/Components/Hero/previews/title-centered.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Hero/previews/title-content-centered.preview.scss b/src/docs/Components/Hero/previews/title-content-centered.preview.scss index a7727db17..2af6f722a 100644 --- a/src/docs/Components/Hero/previews/title-content-centered.preview.scss +++ b/src/docs/Components/Hero/previews/title-content-centered.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Hero/previews/title-content.preview.scss b/src/docs/Components/Hero/previews/title-content.preview.scss index 6fbde9962..9d382aeb0 100644 --- a/src/docs/Components/Hero/previews/title-content.preview.scss +++ b/src/docs/Components/Hero/previews/title-content.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.all-base-typography"; @import "layouts/l.container"; @import "layouts/l.flexy"; diff --git a/src/docs/Components/Layers/code.mdx b/src/docs/Components/Layers/code.mdx index aebfbe502..fe822518e 100644 --- a/src/docs/Components/Layers/code.mdx +++ b/src/docs/Components/Layers/code.mdx @@ -14,7 +14,6 @@ Import the **settings**, the **layer**, and the **button** scss files. @import 'components/_c.layer'; @import 'components/_c.button'; -@import 'components/c.overlay'; ``` ## Usage @@ -63,6 +62,7 @@ These areas are then encompassed in: ``` + ## Detail of areas @@ -94,7 +94,7 @@ If there is a footer in your layer, note that the call-to-actions buttons inside As detailed above, you can add an icon in the header. You can do this in the following way: - + > The width of the icon is 24px _(`$mu150`)_ @@ -128,10 +128,14 @@ In some context, the scrollbar can be moved to the edge of the layer. A primary call to action button accompanied with a secondary button to give the user an alternative choice. + + ### Footer - call to action and link A primary call to action button with a link to redirect the user to a page to give more informations. + + ### Without footer As detailed above, the footer is optional. Depending on the context of your layer, you can do without it: @@ -146,6 +150,8 @@ To do this, you can add the `mc-layer__dialog--extend` to the `.mc-layer__dialog > Note that modifier extends the width of the layer only from the breakpoint M (680px) + + ### Open from left to right In some configurations, you may want to open the layer from the left to the right. @@ -161,7 +167,7 @@ To do this, you can add the `mc-layer--ltr` to the `.mc-layer`. During the opening of a layer by Javascript, several events occur: - Added the `is-open` class on the `mc-layer__dialog` element. -- An `mc-overlay` element is generated in the DOM. This element must also have the class `is-visible`. +- An `mc-layer-overlay` element is generated in the DOM. This element must also have the class `is-visible`. #### Prevent body from scrolling diff --git a/src/docs/Components/Layers/index.mdx b/src/docs/Components/Layers/index.mdx index 011998bba..eeee9d569 100644 --- a/src/docs/Components/Layers/index.mdx +++ b/src/docs/Components/Layers/index.mdx @@ -12,9 +12,6 @@ links: react: status: 'ready' link: 'https://adeo.github.io/mozaic-react/?path=/story/components-layer' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-layer' status: scss: 'ready' figma: 'ready' @@ -40,6 +37,7 @@ Here are a few examples of layers use cases to know this component better: color choice but a layer can be great if you need to give visual indications to the user. + ## Overview @@ -88,6 +86,7 @@ In the case you have complex elements to display inside the layer and need some without breaking the user flow. + ## Do's and Don'ts diff --git a/src/docs/Components/Layers/previews/border-scroll-bar.preview.html b/src/docs/Components/Layers/previews/border-scroll-bar.preview.html index aefc219f5..d5ed1f471 100644 --- a/src/docs/Components/Layers/previews/border-scroll-bar.preview.html +++ b/src/docs/Components/Layers/previews/border-scroll-bar.preview.html @@ -76,5 +76,5 @@

Layer Title

- + diff --git a/src/docs/Components/Layers/previews/border-scroll-bar.preview.scss b/src/docs/Components/Layers/previews/border-scroll-bar.preview.scss index c28368689..cb0e9ea37 100644 --- a/src/docs/Components/Layers/previews/border-scroll-bar.preview.scss +++ b/src/docs/Components/Layers/previews/border-scroll-bar.preview.scss @@ -1,14 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.layer"; @import "components/c.button"; -@import "components/c.overlay"; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 700px; height: 100vh; diff --git a/src/docs/Components/Layers/previews/cta-link.preview.html b/src/docs/Components/Layers/previews/cta-link.preview.html new file mode 100644 index 000000000..4d909803a --- /dev/null +++ b/src/docs/Components/Layers/previews/cta-link.preview.html @@ -0,0 +1,31 @@ +
+ + +
diff --git a/src/docs/Components/Layers/previews/cta-link.preview.scss b/src/docs/Components/Layers/previews/cta-link.preview.scss new file mode 100644 index 000000000..0ec3b9898 --- /dev/null +++ b/src/docs/Components/Layers/previews/cta-link.preview.scss @@ -0,0 +1,39 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.layer"; +@import "components/c.button"; +@import "components/c.links"; + +$background-color-content: #eeeef0; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 700px; + height: 100vh; +} + +.mc-layer__content { + background: linear-gradient( + 90deg, + $background-color-content, + $background-color-content + ) + no-repeat; + background-position: center; + background-size: calc(100% - 16px) auto; + min-height: 100%; + + @include set-from-screen(l) { + background-size: calc(100% - 32px) auto; + } + + p { + margin-top: 0; + + &:not(:last-child) { + margin-bottom: 1rem; + } + } +} diff --git a/src/docs/Components/Layers/previews/cta-two.preview.html b/src/docs/Components/Layers/previews/cta-two.preview.html new file mode 100644 index 000000000..76f9f5c2b --- /dev/null +++ b/src/docs/Components/Layers/previews/cta-two.preview.html @@ -0,0 +1,33 @@ +
+ + +
diff --git a/src/docs/Components/Layers/previews/cta-two.preview.scss b/src/docs/Components/Layers/previews/cta-two.preview.scss new file mode 100644 index 000000000..bb2ee7ed3 --- /dev/null +++ b/src/docs/Components/Layers/previews/cta-two.preview.scss @@ -0,0 +1,38 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.layer"; +@import "components/c.button"; + +$background-color-content: #eeeef0; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 700px; + height: 100vh; +} + +.mc-layer__content { + background: linear-gradient( + 90deg, + $background-color-content, + $background-color-content + ) + no-repeat; + background-position: center; + background-size: calc(100% - 16px) auto; + min-height: 100%; + + @include set-from-screen(l) { + background-size: calc(100% - 32px) auto; + } + + p { + margin-top: 0; + + &:not(:last-child) { + margin-bottom: 1rem; + } + } +} diff --git a/src/docs/Components/Layers/previews/default.preview.html b/src/docs/Components/Layers/previews/default.preview.html new file mode 100644 index 000000000..b2454db00 --- /dev/null +++ b/src/docs/Components/Layers/previews/default.preview.html @@ -0,0 +1,30 @@ +
+ + +
diff --git a/src/docs/Components/Layers/previews/default.preview.scss b/src/docs/Components/Layers/previews/default.preview.scss new file mode 100644 index 000000000..bb2ee7ed3 --- /dev/null +++ b/src/docs/Components/Layers/previews/default.preview.scss @@ -0,0 +1,38 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.layer"; +@import "components/c.button"; + +$background-color-content: #eeeef0; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 700px; + height: 100vh; +} + +.mc-layer__content { + background: linear-gradient( + 90deg, + $background-color-content, + $background-color-content + ) + no-repeat; + background-position: center; + background-size: calc(100% - 16px) auto; + min-height: 100%; + + @include set-from-screen(l) { + background-size: calc(100% - 32px) auto; + } + + p { + margin-top: 0; + + &:not(:last-child) { + margin-bottom: 1rem; + } + } +} diff --git a/src/docs/Components/Layers/previews/extended.preview.html b/src/docs/Components/Layers/previews/extended.preview.html new file mode 100644 index 000000000..d93add295 --- /dev/null +++ b/src/docs/Components/Layers/previews/extended.preview.html @@ -0,0 +1,31 @@ +
+ + + +
diff --git a/src/docs/Components/Layers/previews/extended.preview.scss b/src/docs/Components/Layers/previews/extended.preview.scss new file mode 100644 index 000000000..bb2ee7ed3 --- /dev/null +++ b/src/docs/Components/Layers/previews/extended.preview.scss @@ -0,0 +1,38 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.layer"; +@import "components/c.button"; + +$background-color-content: #eeeef0; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 700px; + height: 100vh; +} + +.mc-layer__content { + background: linear-gradient( + 90deg, + $background-color-content, + $background-color-content + ) + no-repeat; + background-position: center; + background-size: calc(100% - 16px) auto; + min-height: 100%; + + @include set-from-screen(l) { + background-size: calc(100% - 32px) auto; + } + + p { + margin-top: 0; + + &:not(:last-child) { + margin-bottom: 1rem; + } + } +} diff --git a/src/docs/Components/Layers/previews/header-with-icon.preview.html b/src/docs/Components/Layers/previews/header-with-icon.preview.html new file mode 100644 index 000000000..86022eb5d --- /dev/null +++ b/src/docs/Components/Layers/previews/header-with-icon.preview.html @@ -0,0 +1,46 @@ +
+ + +
+ + + + + + + + diff --git a/src/docs/Components/Layers/previews/header-with-icon.preview.scss b/src/docs/Components/Layers/previews/header-with-icon.preview.scss new file mode 100644 index 000000000..bb2ee7ed3 --- /dev/null +++ b/src/docs/Components/Layers/previews/header-with-icon.preview.scss @@ -0,0 +1,38 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.layer"; +@import "components/c.button"; + +$background-color-content: #eeeef0; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 700px; + height: 100vh; +} + +.mc-layer__content { + background: linear-gradient( + 90deg, + $background-color-content, + $background-color-content + ) + no-repeat; + background-position: center; + background-size: calc(100% - 16px) auto; + min-height: 100%; + + @include set-from-screen(l) { + background-size: calc(100% - 32px) auto; + } + + p { + margin-top: 0; + + &:not(:last-child) { + margin-bottom: 1rem; + } + } +} diff --git a/src/docs/Components/Layers/previews/open-ltr.preview.html b/src/docs/Components/Layers/previews/open-ltr.preview.html index 12f3e4cdf..73a9ae189 100644 --- a/src/docs/Components/Layers/previews/open-ltr.preview.html +++ b/src/docs/Components/Layers/previews/open-ltr.preview.html @@ -26,5 +26,5 @@

Layer Title

- + diff --git a/src/docs/Components/Layers/previews/open-ltr.preview.scss b/src/docs/Components/Layers/previews/open-ltr.preview.scss index ff7ef4358..bb2ee7ed3 100644 --- a/src/docs/Components/Layers/previews/open-ltr.preview.scss +++ b/src/docs/Components/Layers/previews/open-ltr.preview.scss @@ -1,15 +1,13 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.layer"; @import "components/c.button"; $background-color-content: #eeeef0; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 700px; height: 100vh; diff --git a/src/docs/Components/Layers/previews/scrolling-content.preview.html b/src/docs/Components/Layers/previews/scrolling-content.preview.html index 62fb53eee..d0c9da1ad 100644 --- a/src/docs/Components/Layers/previews/scrolling-content.preview.html +++ b/src/docs/Components/Layers/previews/scrolling-content.preview.html @@ -9,9 +9,6 @@ >
- - -

Layer Title

- + - - - - - - - - diff --git a/src/docs/Components/Layers/previews/scrolling-content.preview.scss b/src/docs/Components/Layers/previews/scrolling-content.preview.scss index c28368689..cb0e9ea37 100644 --- a/src/docs/Components/Layers/previews/scrolling-content.preview.scss +++ b/src/docs/Components/Layers/previews/scrolling-content.preview.scss @@ -1,14 +1,11 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.layer"; @import "components/c.button"; -@import "components/c.overlay"; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 700px; height: 100vh; diff --git a/src/docs/Components/Layers/previews/without-footer.preview.html b/src/docs/Components/Layers/previews/without-footer.preview.html index 432c85aae..aed50f36e 100644 --- a/src/docs/Components/Layers/previews/without-footer.preview.html +++ b/src/docs/Components/Layers/previews/without-footer.preview.html @@ -21,5 +21,5 @@

Layer Title

- + diff --git a/src/docs/Components/Layers/previews/without-footer.preview.scss b/src/docs/Components/Layers/previews/without-footer.preview.scss index b884f08f0..4ebf5671b 100644 --- a/src/docs/Components/Layers/previews/without-footer.preview.scss +++ b/src/docs/Components/Layers/previews/without-footer.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.layer"; $background-color-content: #eeeef0; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 700px; height: 100vh; diff --git a/src/docs/Components/Links/code.mdx b/src/docs/Components/Links/code.mdx index e71f461b7..3468d7b5f 100644 --- a/src/docs/Components/Links/code.mdx +++ b/src/docs/Components/Links/code.mdx @@ -21,6 +21,8 @@ To create a link you have one main class to apply `mc-link`. Default link ``` + + ## Variations ### Available color themes @@ -49,7 +51,25 @@ You can use one of the 2 available sizes : ### Icons possibilities -#### Positions and sizes +#### Positions + +You can add an icon into a link in different ways : + +- **On the left** + + + +* **On the right** + + + +* **Icon only** + + Using the class : `mc-link__icon` + + + +#### Icon sizes Link icons are only used in `16px` regardless of the link size @@ -73,6 +93,7 @@ Link icons are only used in `16px` regardless of the link size - `visited` - `disabled` + ## Mixins diff --git a/src/docs/Components/Links/index.mdx b/src/docs/Components/Links/index.mdx index b27d994d3..a60ab8189 100644 --- a/src/docs/Components/Links/index.mdx +++ b/src/docs/Components/Links/index.mdx @@ -24,6 +24,8 @@ status: Please use a [button](/Components/Buttons/) for any other action. + + By default, all the links are black `$color-grey-900`. You should consider using the default link before thinking to any other color option, but occasionally, you can override the color depending on the context, for example on a dark background, or a link in an error box. @@ -32,7 +34,7 @@ You should consider using the default link before thinking to any other color op Links, while generally are dark by default, have contextual variations that you can use occasionally depending on the need. - +
@@ -46,6 +48,8 @@ Links, while generally are dark by default, have contextual variations that you Inline links are links contained into paragraphs of text. By default, the inline links inherit the current size. + + ## The navigation links : Single links are interface elements used to navigate between pages like : diff --git a/src/docs/Components/Links/previews/contextual-links.preview.html b/src/docs/Components/Links/previews/contextual-links.preview.html new file mode 100644 index 000000000..6168a2933 --- /dev/null +++ b/src/docs/Components/Links/previews/contextual-links.preview.html @@ -0,0 +1,9 @@ + + + diff --git a/src/docs/Components/Links/previews/contextual-links.preview.scss b/src/docs/Components/Links/previews/contextual-links.preview.scss new file mode 100644 index 000000000..2db968dbb --- /dev/null +++ b/src/docs/Components/Links/previews/contextual-links.preview.scss @@ -0,0 +1,18 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + margin: $mu100 auto; + display: flex; + justify-content: center; + + &__bg-dark { + background-color: black; + } +} diff --git a/src/docs/Components/Links/previews/link-default.preview.html b/src/docs/Components/Links/previews/link-default.preview.html new file mode 100644 index 000000000..6d923d93a --- /dev/null +++ b/src/docs/Components/Links/previews/link-default.preview.html @@ -0,0 +1,3 @@ + diff --git a/src/docs/Components/Links/previews/link-default.preview.scss b/src/docs/Components/Links/previews/link-default.preview.scss new file mode 100644 index 000000000..ab7261b6d --- /dev/null +++ b/src/docs/Components/Links/previews/link-default.preview.scss @@ -0,0 +1,13 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + text-align: center; + margin: $mu100 auto; +} diff --git a/src/docs/Components/Links/previews/link-dont.preview.scss b/src/docs/Components/Links/previews/link-dont.preview.scss index bd15effe1..db43faa2c 100644 --- a/src/docs/Components/Links/previews/link-dont.preview.scss +++ b/src/docs/Components/Links/previews/link-dont.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; .example { + @include set-font-face("regular"); + text-align: left; margin: $mu100; display: flex; diff --git a/src/docs/Components/Links/previews/link-error-and-light.preview.html b/src/docs/Components/Links/previews/link-error-and-light.preview.html new file mode 100644 index 000000000..59ab46227 --- /dev/null +++ b/src/docs/Components/Links/previews/link-error-and-light.preview.html @@ -0,0 +1,10 @@ + + diff --git a/src/docs/Components/Links/previews/link-error-and-light.preview.scss b/src/docs/Components/Links/previews/link-error-and-light.preview.scss new file mode 100644 index 000000000..2db968dbb --- /dev/null +++ b/src/docs/Components/Links/previews/link-error-and-light.preview.scss @@ -0,0 +1,18 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + margin: $mu100 auto; + display: flex; + justify-content: center; + + &__bg-dark { + background-color: black; + } +} diff --git a/src/docs/Components/Links/previews/link-icon-left.preview.html b/src/docs/Components/Links/previews/link-icon-left.preview.html new file mode 100644 index 000000000..c95747be5 --- /dev/null +++ b/src/docs/Components/Links/previews/link-icon-left.preview.html @@ -0,0 +1,19 @@ + + + + + + diff --git a/src/docs/Components/Links/previews/link-icon-left.preview.scss b/src/docs/Components/Links/previews/link-icon-left.preview.scss new file mode 100644 index 000000000..bce141e1e --- /dev/null +++ b/src/docs/Components/Links/previews/link-icon-left.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + text-align: left; + margin: $mu100; + display: flex; +} diff --git a/src/docs/Components/Links/previews/link-icon-only.preview.html b/src/docs/Components/Links/previews/link-icon-only.preview.html new file mode 100644 index 000000000..e865f91f4 --- /dev/null +++ b/src/docs/Components/Links/previews/link-icon-only.preview.html @@ -0,0 +1,19 @@ + + + + + + + diff --git a/src/docs/Components/Links/previews/link-icon-only.preview.scss b/src/docs/Components/Links/previews/link-icon-only.preview.scss new file mode 100644 index 000000000..bce141e1e --- /dev/null +++ b/src/docs/Components/Links/previews/link-icon-only.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + text-align: left; + margin: $mu100; + display: flex; +} diff --git a/src/docs/Components/Links/previews/link-icon-right.preview.html b/src/docs/Components/Links/previews/link-icon-right.preview.html new file mode 100644 index 000000000..b4b1a898c --- /dev/null +++ b/src/docs/Components/Links/previews/link-icon-right.preview.html @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/docs/Components/Links/previews/link-icon-right.preview.scss b/src/docs/Components/Links/previews/link-icon-right.preview.scss new file mode 100644 index 000000000..bce141e1e --- /dev/null +++ b/src/docs/Components/Links/previews/link-icon-right.preview.scss @@ -0,0 +1,14 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + text-align: left; + margin: $mu100; + display: flex; +} diff --git a/src/docs/Components/Links/previews/link-icon.preview.scss b/src/docs/Components/Links/previews/link-icon.preview.scss index 0bb0c8743..c77b58cad 100644 --- a/src/docs/Components/Links/previews/link-icon.preview.scss +++ b/src/docs/Components/Links/previews/link-icon.preview.scss @@ -1,12 +1,9 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; body { + @include set-font-face("regular"); @include set-font-scale("05"); } diff --git a/src/docs/Components/Links/previews/link-inline-default.preview.html b/src/docs/Components/Links/previews/link-inline-default.preview.html new file mode 100644 index 000000000..01db755ed --- /dev/null +++ b/src/docs/Components/Links/previews/link-inline-default.preview.html @@ -0,0 +1,23 @@ +
+

+ This is an example of a paragraph that contains an inline + link + that inherits its context in terms of font styles,
but + it will be always dark. +

+

+ This is an example of a paragraph that contains an inline + link that inherits its context in terms of + font styles,
but it will be always dark. +

+

+ This is an example of a paragraph that contains an inline + link that inherits its context in terms of + font styles,
but it will be always dark. +

+

+ This is an example of a paragraph that contains an inline + link that inherits its context in terms of + font styles,
but it will be always dark. +

+
diff --git a/src/docs/Components/Links/previews/link-inline-default.preview.scss b/src/docs/Components/Links/previews/link-inline-default.preview.scss new file mode 100644 index 000000000..d050f895b --- /dev/null +++ b/src/docs/Components/Links/previews/link-inline-default.preview.scss @@ -0,0 +1,42 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); +} + +.example { + margin: $mu100 auto; + display: flex; + justify-content: space-around; + flex-direction: row; + + &__dark { + @include set-font-scale("04"); + + padding: $mu200; + color: $color-grey-900; + } + + &__green { + @include set-font-scale("05"); + + padding: $mu200; + color: $color-primary-01-500; + } + + &__grey { + @include set-font-scale("06"); + + padding: $mu200; + color: $color-grey-500; + } + + &__red { + @include set-font-scale("07"); + + padding: $mu200; + color: $color-secondary-red-500; + } +} diff --git a/src/docs/Components/Links/previews/link-sizes.preview.scss b/src/docs/Components/Links/previews/link-sizes.preview.scss index b7a5e48a3..961d698de 100644 --- a/src/docs/Components/Links/previews/link-sizes.preview.scss +++ b/src/docs/Components/Links/previews/link-sizes.preview.scss @@ -1,12 +1,9 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; body { + @include set-font-face("regular"); @include set-font-scale("05"); } diff --git a/src/docs/Components/Links/previews/link-state.preview.html b/src/docs/Components/Links/previews/link-state.preview.html new file mode 100644 index 000000000..0a3d3d2eb --- /dev/null +++ b/src/docs/Components/Links/previews/link-state.preview.html @@ -0,0 +1,63 @@ +
+ + + +
+

Disabled

+ + Link + + + Link + + + Link + + + Link + +
+
diff --git a/src/docs/Components/Links/previews/link-state.preview.scss b/src/docs/Components/Links/previews/link-state.preview.scss new file mode 100644 index 000000000..1abfe1de3 --- /dev/null +++ b/src/docs/Components/Links/previews/link-state.preview.scss @@ -0,0 +1,31 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; + +body { + @include set-font-face("regular"); + @include set-font-scale("05"); +} + +.example { + display: flex; + width: 90%; + margin: auto; + text-align: center; + justify-content: center; + + &__col-title { + @include set-font-face("regular"); + } + + &__col { + flex: 0 1 33%; + box-sizing: border-box; + padding: 0 $mu100; + } + + &__item { + width: 100%; + display: block; + } +} diff --git a/src/docs/Components/Links/previews/link-styles.preview.scss b/src/docs/Components/Links/previews/link-styles.preview.scss index 0e26cf450..2db968dbb 100644 --- a/src/docs/Components/Links/previews/link-styles.preview.scss +++ b/src/docs/Components/Links/previews/link-styles.preview.scss @@ -1,12 +1,9 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; body { + @include set-font-face("regular"); @include set-font-scale("05"); } diff --git a/src/docs/Components/ListBox/index.mdx b/src/docs/Components/ListBox/index.mdx index 631c34ca6..caa0bbe04 100644 --- a/src/docs/Components/ListBox/index.mdx +++ b/src/docs/Components/ListBox/index.mdx @@ -3,15 +3,7 @@ title: 'Listbox' order: 1 description: 'The definition will be added soon.' links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mlistbox' - status: 'ready' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-listbox' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-listbox' + status: figma: 'beta' scss: 'beta' diff --git a/src/docs/Components/ListBox/previews/actions.preview.scss b/src/docs/Components/ListBox/previews/actions.preview.scss index af724b167..b0ef50934 100644 --- a/src/docs/Components/ListBox/previews/actions.preview.scss +++ b/src/docs/Components/ListBox/previews/actions.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.listbox"; .example { diff --git a/src/docs/Components/ListBox/previews/default.preview.scss b/src/docs/Components/ListBox/previews/default.preview.scss index af724b167..b0ef50934 100644 --- a/src/docs/Components/ListBox/previews/default.preview.scss +++ b/src/docs/Components/ListBox/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.listbox"; .example { diff --git a/src/docs/Components/ListBox/previews/flags.preview.scss b/src/docs/Components/ListBox/previews/flags.preview.scss index af724b167..b0ef50934 100644 --- a/src/docs/Components/ListBox/previews/flags.preview.scss +++ b/src/docs/Components/ListBox/previews/flags.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.listbox"; .example { diff --git a/src/docs/Components/ListBox/previews/icons.preview.scss b/src/docs/Components/ListBox/previews/icons.preview.scss index af724b167..b0ef50934 100644 --- a/src/docs/Components/ListBox/previews/icons.preview.scss +++ b/src/docs/Components/ListBox/previews/icons.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.listbox"; .example { diff --git a/src/docs/Components/ListBox/previews/multiselect.preview.scss b/src/docs/Components/ListBox/previews/multiselect.preview.scss index 2040621ea..054a812e0 100644 --- a/src/docs/Components/ListBox/previews/multiselect.preview.scss +++ b/src/docs/Components/ListBox/previews/multiselect.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.listbox"; diff --git a/src/docs/Components/Loader/code.mdx b/src/docs/Components/Loader/code.mdx index 3ddf77836..c11dd9b9f 100644 --- a/src/docs/Components/Loader/code.mdx +++ b/src/docs/Components/Loader/code.mdx @@ -27,6 +27,8 @@ The creation of a **Loader** component in your code is done using the following ``` + + ## Variations ### Available sizes diff --git a/src/docs/Components/Loader/index.mdx b/src/docs/Components/Loader/index.mdx index 5a01f1e1f..d70a83904 100644 --- a/src/docs/Components/Loader/index.mdx +++ b/src/docs/Components/Loader/index.mdx @@ -2,16 +2,6 @@ title: 'Loader' order: 1 description: '(WIP)' -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mloader' - status: 'ready' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-loader' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-loader' status: figma: 'ready' scss: 'ready' @@ -19,7 +9,7 @@ status: > Definition (WIP) - + ## Variations diff --git a/src/docs/Components/Loader/previews/default.preview.html b/src/docs/Components/Loader/previews/default.preview.html new file mode 100644 index 000000000..3caab3d3f --- /dev/null +++ b/src/docs/Components/Loader/previews/default.preview.html @@ -0,0 +1,13 @@ +
+
+ + + + + +
+
diff --git a/src/docs/Components/Loader/previews/default.preview.scss b/src/docs/Components/Loader/previews/default.preview.scss new file mode 100644 index 000000000..483cfd4ec --- /dev/null +++ b/src/docs/Components/Loader/previews/default.preview.scss @@ -0,0 +1,13 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.loader"; + +.example { + @include set-font-face(); + + padding: $mu200; + align-items: center; + display: flex; + justify-content: center; + gap: $mu200; +} diff --git a/src/docs/Components/Loader/previews/opening.preview.html b/src/docs/Components/Loader/previews/opening.preview.html new file mode 100644 index 000000000..567a405b1 --- /dev/null +++ b/src/docs/Components/Loader/previews/opening.preview.html @@ -0,0 +1,46 @@ +
+ + +
+ + diff --git a/src/docs/Components/Loader/previews/opening.preview.scss b/src/docs/Components/Loader/previews/opening.preview.scss new file mode 100644 index 000000000..687c8bfca --- /dev/null +++ b/src/docs/Components/Loader/previews/opening.preview.scss @@ -0,0 +1,12 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.button"; +@import "components/c.overlay"; +@import "components/c.loader"; + +.example { + @include set-font-face(); + + min-height: 500px; + padding: $mu200; +} diff --git a/src/docs/Components/Loader/previews/overlay-text.preview.html b/src/docs/Components/Loader/previews/overlay-text.preview.html new file mode 100644 index 000000000..a7c153d02 --- /dev/null +++ b/src/docs/Components/Loader/previews/overlay-text.preview.html @@ -0,0 +1,17 @@ +
+ +
diff --git a/src/docs/Components/Loader/previews/overlay-text.preview.scss b/src/docs/Components/Loader/previews/overlay-text.preview.scss new file mode 100644 index 000000000..33636fa83 --- /dev/null +++ b/src/docs/Components/Loader/previews/overlay-text.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.overlay"; +@import "components/c.loader"; + +.example { + @include set-font-face(); + + min-height: 500px; + padding: $mu200; +} diff --git a/src/docs/Components/Loader/previews/overlay.preview.html b/src/docs/Components/Loader/previews/overlay.preview.html new file mode 100644 index 000000000..1bb7a2ae2 --- /dev/null +++ b/src/docs/Components/Loader/previews/overlay.preview.html @@ -0,0 +1,15 @@ +
+ +
diff --git a/src/docs/Components/Loader/previews/overlay.preview.scss b/src/docs/Components/Loader/previews/overlay.preview.scss new file mode 100644 index 000000000..33636fa83 --- /dev/null +++ b/src/docs/Components/Loader/previews/overlay.preview.scss @@ -0,0 +1,11 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.overlay"; +@import "components/c.loader"; + +.example { + @include set-font-face(); + + min-height: 500px; + padding: $mu200; +} diff --git a/src/docs/Components/Loader/previews/sizes.preview.scss b/src/docs/Components/Loader/previews/sizes.preview.scss index 57ebceb4d..483cfd4ec 100644 --- a/src/docs/Components/Loader/previews/sizes.preview.scss +++ b/src/docs/Components/Loader/previews/sizes.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.loader"; .example { + @include set-font-face(); + padding: $mu200; align-items: center; display: flex; diff --git a/src/docs/Components/Loader/previews/themes.preview.scss b/src/docs/Components/Loader/previews/themes.preview.scss index e7b334f21..fa1b2abda 100644 --- a/src/docs/Components/Loader/previews/themes.preview.scss +++ b/src/docs/Components/Loader/previews/themes.preview.scss @@ -1,12 +1,10 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.loader"; .example { + @include set-font-face(); + padding: $mu200; align-items: center; display: flex; diff --git a/src/docs/Components/Modals/code.mdx b/src/docs/Components/Modals/code.mdx index 168b8897b..f6eec094f 100644 --- a/src/docs/Components/Modals/code.mdx +++ b/src/docs/Components/Modals/code.mdx @@ -15,7 +15,6 @@ Import the **settings**, the **modal**, the **bodys**, and the **button** scss f @import 'components/c.divider'; @import 'components/c.modal'; @import 'components/c.button'; -@import 'components/c.overlay'; ``` ## Usage @@ -96,6 +95,8 @@ The footer is the area that allows you to insert call-to-actions. This zone must > Note that call to actions always take 100% of the modal's width on `breakpoint-s`. + + ## Variations ### Header with icon @@ -106,6 +107,11 @@ As detailed above, you can add an icon in the header. You can do this in the fol > The width of the icon is 24px _(`$mu150`)_ +### Without heading + +In cases where it is not necessary, you can use a modal without heading, as follows: + + ### Scrolling long content @@ -155,9 +161,9 @@ Just as the width of a modal varies according to the rules indicated above, the During the opening of a modal by Javascript, several events occur: - Added the `is-open` class on the `mc-modal__dialog` element. -- A `mc-overlay` element is generated in the DOM. This element must also have the class `is-visible`. +- A `mc-modal-overlay` element is generated in the DOM. This element must also have the class `is-visible`. - + #### Prevent body from scrolling diff --git a/src/docs/Components/Modals/index.mdx b/src/docs/Components/Modals/index.mdx index 5000fe928..7c5eb3d25 100644 --- a/src/docs/Components/Modals/index.mdx +++ b/src/docs/Components/Modals/index.mdx @@ -12,9 +12,6 @@ links: react: status: 'ready' link: 'https://adeo.github.io/mozaic-react/?path=/story/components-modal' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-modal' status: figma: 'ready' scss: 'ready' @@ -99,3 +96,5 @@ Use this variation exclusively for destructive actions. Please use the default v + +## Do's and Don'ts diff --git a/src/docs/Components/Modals/previews/big-content.preview.scss b/src/docs/Components/Modals/previews/big-content.preview.scss index aa00da8d5..999b69354 100644 --- a/src/docs/Components/Modals/previews/big-content.preview.scss +++ b/src/docs/Components/Modals/previews/big-content.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.bodys"; @@ -6,6 +5,8 @@ @import "components/c.button"; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 500px; height: 100vh; diff --git a/src/docs/Components/Modals/previews/cta-link.preview.scss b/src/docs/Components/Modals/previews/cta-link.preview.scss index 918751ab3..f9e29c6dd 100644 --- a/src/docs/Components/Modals/previews/cta-link.preview.scss +++ b/src/docs/Components/Modals/previews/cta-link.preview.scss @@ -1,15 +1,13 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.bodys"; @import "components/c.modal"; @import "components/c.button"; @import "components/c.links"; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 500px; height: 100vh; diff --git a/src/docs/Components/Modals/previews/cta-two.preview.scss b/src/docs/Components/Modals/previews/cta-two.preview.scss index ad6b89f3a..999b69354 100644 --- a/src/docs/Components/Modals/previews/cta-two.preview.scss +++ b/src/docs/Components/Modals/previews/cta-two.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.bodys"; @import "components/c.modal"; @import "components/c.button"; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 500px; height: 100vh; diff --git a/src/docs/Components/Modals/previews/default.preview.html b/src/docs/Components/Modals/previews/default.preview.html new file mode 100644 index 000000000..666f00ea3 --- /dev/null +++ b/src/docs/Components/Modals/previews/default.preview.html @@ -0,0 +1,31 @@ +
+ +
diff --git a/src/docs/Components/Modals/previews/default.preview.scss b/src/docs/Components/Modals/previews/default.preview.scss new file mode 100644 index 000000000..999b69354 --- /dev/null +++ b/src/docs/Components/Modals/previews/default.preview.scss @@ -0,0 +1,24 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "typography/t.bodys"; +@import "components/c.modal"; +@import "components/c.button"; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 500px; + height: 100vh; +} + +.mc-modal__content { + p { + margin-top: 0; + margin-bottom: 0; + + &:not(:last-child) { + margin-bottom: $mu100; + } + } +} diff --git a/src/docs/Components/Modals/previews/delete-action.preview.scss b/src/docs/Components/Modals/previews/delete-action.preview.scss index d28b9b24c..6c7c70948 100644 --- a/src/docs/Components/Modals/previews/delete-action.preview.scss +++ b/src/docs/Components/Modals/previews/delete-action.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "typography/t.bodys"; @import "components/c.modal"; @import "components/c.button"; .example { + @include set-font-face("regular"); + background-color: #f6f7f7; min-height: 500px; height: 100vh; diff --git a/src/docs/Components/Modals/previews/header-with-icon.preview.html b/src/docs/Components/Modals/previews/header-with-icon.preview.html index 1b887dd96..151c2eeee 100644 --- a/src/docs/Components/Modals/previews/header-with-icon.preview.html +++ b/src/docs/Components/Modals/previews/header-with-icon.preview.html @@ -31,10 +31,8 @@

Title

- - + + + diff --git a/src/docs/Components/Modals/previews/opening.preview.scss b/src/docs/Components/Modals/previews/opening.preview.scss new file mode 100644 index 000000000..999b69354 --- /dev/null +++ b/src/docs/Components/Modals/previews/opening.preview.scss @@ -0,0 +1,24 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "typography/t.bodys"; +@import "components/c.modal"; +@import "components/c.button"; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 500px; + height: 100vh; +} + +.mc-modal__content { + p { + margin-top: 0; + margin-bottom: 0; + + &:not(:last-child) { + margin-bottom: $mu100; + } + } +} diff --git a/src/docs/Components/Modals/previews/withouttitle.preview.html b/src/docs/Components/Modals/previews/withouttitle.preview.html new file mode 100644 index 000000000..82110f39b --- /dev/null +++ b/src/docs/Components/Modals/previews/withouttitle.preview.html @@ -0,0 +1,30 @@ +
+ +
diff --git a/src/docs/Components/Modals/previews/withouttitle.preview.scss b/src/docs/Components/Modals/previews/withouttitle.preview.scss new file mode 100644 index 000000000..999b69354 --- /dev/null +++ b/src/docs/Components/Modals/previews/withouttitle.preview.scss @@ -0,0 +1,24 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "typography/t.bodys"; +@import "components/c.modal"; +@import "components/c.button"; + +.example { + @include set-font-face("regular"); + + background-color: #f6f7f7; + min-height: 500px; + height: 100vh; +} + +.mc-modal__content { + p { + margin-top: 0; + margin-bottom: 0; + + &:not(:last-child) { + margin-bottom: $mu100; + } + } +} diff --git a/src/docs/Components/Notification/code.mdx b/src/docs/Components/Notification/code.mdx index 14a147b08..3d13b9a1d 100644 --- a/src/docs/Components/Notification/code.mdx +++ b/src/docs/Components/Notification/code.mdx @@ -29,6 +29,8 @@ Wrap a title (it may be any level of heading: `h1`, `h2`, `h3` and so on, depend ``` + + ### Use with link You can add a link to your **Notification** component. @@ -37,6 +39,8 @@ In order to keep the display of the component harmonious, please note that the l > Note that any other use than a `mc-link` in size **S**, does not respect the Design System guidelines. + + ### Use with buttons You can also use the **Notification** component with one or two buttons. diff --git a/src/docs/Components/Notification/index.mdx b/src/docs/Components/Notification/index.mdx index 0dea43d79..09bdc106f 100644 --- a/src/docs/Components/Notification/index.mdx +++ b/src/docs/Components/Notification/index.mdx @@ -35,6 +35,8 @@ For SEO & accessibility reasons, a paragraph is always required inside a notific + + ## Types @@ -45,21 +47,25 @@ For SEO & accessibility reasons, a paragraph is always required inside a notific Informational notifications are **blue**. They are used to highlight a piece of relevant information but don't require immediate action. + ### Success Success notifications are **green**. They are used when an action is successful. + ### Warning Warning notifications are **orange**. They warn the user about important information that deserves caution. + ### Danger Danger notifications are **red**. They are used to warn the user of an error or a problem. This may require immediate action. + ## Variations @@ -83,6 +89,8 @@ This is the default variation to use in most cases and is mainly positioned at t Use a link when the message indicates an action to do on a different page. + + #### Button Use a button when the message indicates an action to do immediately. diff --git a/src/docs/Components/Notification/previews/notification-danger.preview.html b/src/docs/Components/Notification/previews/notification-danger.preview.html new file mode 100644 index 000000000..bf2d18fd6 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification-danger.preview.html @@ -0,0 +1,14 @@ +
+ +
diff --git a/src/docs/Components/Notification/previews/notification-danger.preview.scss b/src/docs/Components/Notification/previews/notification-danger.preview.scss new file mode 100644 index 000000000..81d6008f4 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification-danger.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; +@import "components/c.notification"; + +.example { + padding: $mu250; +} diff --git a/src/docs/Components/Notification/previews/notification-success.preview.html b/src/docs/Components/Notification/previews/notification-success.preview.html new file mode 100644 index 000000000..6c73f2495 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification-success.preview.html @@ -0,0 +1,14 @@ +
+
+
+

Success notification

+

+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo + ligula eget dolor. Aenean massa. +

+ +
+
+
diff --git a/src/docs/Components/Notification/previews/notification-success.preview.scss b/src/docs/Components/Notification/previews/notification-success.preview.scss new file mode 100644 index 000000000..81d6008f4 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification-success.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; +@import "components/c.notification"; + +.example { + padding: $mu250; +} diff --git a/src/docs/Components/Notification/previews/notification-types.preview.scss b/src/docs/Components/Notification/previews/notification-types.preview.scss index a883bf2ad..93604638d 100644 --- a/src/docs/Components/Notification/previews/notification-types.preview.scss +++ b/src/docs/Components/Notification/previews/notification-types.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.notification"; diff --git a/src/docs/Components/Notification/previews/notification-variations.preview.scss b/src/docs/Components/Notification/previews/notification-variations.preview.scss index de939753e..81d6008f4 100644 --- a/src/docs/Components/Notification/previews/notification-variations.preview.scss +++ b/src/docs/Components/Notification/previews/notification-variations.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.notification"; diff --git a/src/docs/Components/Notification/previews/notification-warning.preview.html b/src/docs/Components/Notification/previews/notification-warning.preview.html new file mode 100644 index 000000000..449cd0d48 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification-warning.preview.html @@ -0,0 +1,14 @@ +
+
+
+

Warning notification

+

+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo + ligula eget dolor. Aenean massa. +

+ +
+
+
diff --git a/src/docs/Components/Notification/previews/notification-warning.preview.scss b/src/docs/Components/Notification/previews/notification-warning.preview.scss new file mode 100644 index 000000000..81d6008f4 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification-warning.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; +@import "components/c.notification"; + +.example { + padding: $mu250; +} diff --git a/src/docs/Components/Notification/previews/notification.preview.html b/src/docs/Components/Notification/previews/notification.preview.html new file mode 100644 index 000000000..1a22e3354 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification.preview.html @@ -0,0 +1,14 @@ +
+
+
+

Information notification

+

+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo + ligula eget dolor. Aenean massa. +

+ +
+
+
diff --git a/src/docs/Components/Notification/previews/notification.preview.scss b/src/docs/Components/Notification/previews/notification.preview.scss new file mode 100644 index 000000000..81d6008f4 --- /dev/null +++ b/src/docs/Components/Notification/previews/notification.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.links"; +@import "components/c.notification"; + +.example { + padding: $mu250; +} diff --git a/src/docs/Components/Notification/previews/sizes.preview.scss b/src/docs/Components/Notification/previews/sizes.preview.scss index 4c4d44941..3b116bd25 100644 --- a/src/docs/Components/Notification/previews/sizes.preview.scss +++ b/src/docs/Components/Notification/previews/sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.notification"; @@ -12,7 +8,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Notification/previews/with-buttons-usage.preview.scss b/src/docs/Components/Notification/previews/with-buttons-usage.preview.scss index 311b7dd4f..a4c7320f9 100644 --- a/src/docs/Components/Notification/previews/with-buttons-usage.preview.scss +++ b/src/docs/Components/Notification/previews/with-buttons-usage.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.notification"; @import "components/c.button"; @@ -13,7 +9,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Notification/previews/with-buttons.preview.scss b/src/docs/Components/Notification/previews/with-buttons.preview.scss index 311b7dd4f..a4c7320f9 100644 --- a/src/docs/Components/Notification/previews/with-buttons.preview.scss +++ b/src/docs/Components/Notification/previews/with-buttons.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.notification"; @import "components/c.button"; @@ -13,7 +9,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Notification/specs.mdx b/src/docs/Components/Notification/specs.mdx index fb675728f..970deec67 100644 --- a/src/docs/Components/Notification/specs.mdx +++ b/src/docs/Components/Notification/specs.mdx @@ -1,6 +1,6 @@ --- title: 'Specs' -order: 5 +order: 3 --- ## Anatomy diff --git a/src/docs/Components/OptionGroup/OptionButton/index.mdx b/src/docs/Components/OptionGroup/OptionButton/index.mdx index 5ac391764..9dda01853 100644 --- a/src/docs/Components/OptionGroup/OptionButton/index.mdx +++ b/src/docs/Components/OptionGroup/OptionButton/index.mdx @@ -3,18 +3,7 @@ title: 'Option button' order: 1 description: 'The option button component allows confronting some options and can be used inside a questionnaire or a survey. The content of each option button must be easily readable to help the user make a choice' links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-moptionbutton' - status: 'ready' - freemarker: - link: 'https://solid-bassoon-011c369c.pages.github.io/pages/3_Components/option-group/option-button/' - status: 'ready' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-optionbutton' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-optionbutton' + status: figma: 'ready' scss: 'ready' diff --git a/src/docs/Components/OptionGroup/OptionButton/previews/default.preview.scss b/src/docs/Components/OptionGroup/OptionButton/previews/default.preview.scss index d976ab0b2..425eb74a2 100644 --- a/src/docs/Components/OptionGroup/OptionButton/previews/default.preview.scss +++ b/src/docs/Components/OptionGroup/OptionButton/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.option-button"; .example { diff --git a/src/docs/Components/OptionGroup/OptionButton/previews/width.preview.scss b/src/docs/Components/OptionGroup/OptionButton/previews/width.preview.scss index 188d6602e..7580f9489 100644 --- a/src/docs/Components/OptionGroup/OptionButton/previews/width.preview.scss +++ b/src/docs/Components/OptionGroup/OptionButton/previews/width.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.option-button"; .example { diff --git a/src/docs/Components/OptionGroup/OptionCard/index.mdx b/src/docs/Components/OptionGroup/OptionCard/index.mdx index b8c9806b5..46af116c8 100644 --- a/src/docs/Components/OptionGroup/OptionCard/index.mdx +++ b/src/docs/Components/OptionGroup/OptionCard/index.mdx @@ -3,15 +3,6 @@ title: 'Option card' order: 1 description: 'The option card component allows confronting some options of an item (product or service) and can be used to set up or even filter a selection. The content of each option card must be a comparable synthesis to help the user make a choice.' links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-moptioncard' - status: 'ready' - freemarker: - link: 'https://solid-bassoon-011c369c.pages.github.io/pages/3_Components/option-group/option-card/' - status: 'ready' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-OptionCard' status: figma: 'ready' diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/centered.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/centered.preview.scss index a35eae153..dd118f3dd 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/centered.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/centered.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "components/c.option-card"; diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/checkbox.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/checkbox.preview.scss index 610023eae..8fa84eb45 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/checkbox.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/checkbox.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.option-card"; diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/default.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/default.preview.scss index dcdc4849f..ea956ca50 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/default.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "components/c.option-card"; diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/delivery.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/delivery.preview.scss index 5d4b21cd9..c9c642c93 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/delivery.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/delivery.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "typography/t.bodys"; @import "components/c.option-card"; diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/product.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/product.preview.scss index 7ce67311b..3cc1d4bd2 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/product.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/product.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.radio"; @import "components/c.button"; @import "typography/t.bodys"; diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/small.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/small.preview.scss index 4b4fe4753..a4d2c6476 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/small.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/small.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.checkbox"; @import "components/c.option-card"; diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/withButton.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/withButton.preview.scss index cb3b8550e..e6f1bd593 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/withButton.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/withButton.preview.scss @@ -1,14 +1,12 @@ -@import "tokens"; -@import "settings-tools/all-settings"; +@import "settings-tools/_all-settings"; + @include import-font-families(); -@import "components/c.checkbox"; -@import "components/c.button"; -@import "typography/t.bodys"; -@import "components/c.option-card"; -html { - @include set-font-face(); -} +@import "components/_c.checkbox"; +@import "components/_c.button"; +@import "typography/_t.bodys"; +@import "components/_c.option-card"; + .example { @include set-font-family(); diff --git a/src/docs/Components/OptionGroup/OptionCard/previews/withcontent.preview.scss b/src/docs/Components/OptionGroup/OptionCard/previews/withcontent.preview.scss index 001d4083a..635271176 100644 --- a/src/docs/Components/OptionGroup/OptionCard/previews/withcontent.preview.scss +++ b/src/docs/Components/OptionGroup/OptionCard/previews/withcontent.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "typography/t.bodys"; @include import-font-families(); diff --git a/src/docs/Components/Pagination/index.mdx b/src/docs/Components/Pagination/index.mdx index 38cede42f..3a45534e1 100644 --- a/src/docs/Components/Pagination/index.mdx +++ b/src/docs/Components/Pagination/index.mdx @@ -6,12 +6,6 @@ links: vue: link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mpagination' status: 'ready' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-pagination' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-pagination' freemarker: status: 'ready' link: 'https://solid-bassoon-011c369c.pages.github.io/pages/3_Components/pagination/' diff --git a/src/docs/Components/Pagination/previews/pagination-compact.preview.scss b/src/docs/Components/Pagination/previews/pagination-compact.preview.scss index 924e5e1d4..53abe9c78 100644 --- a/src/docs/Components/Pagination/previews/pagination-compact.preview.scss +++ b/src/docs/Components/Pagination/previews/pagination-compact.preview.scss @@ -1,13 +1,8 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.button"; @import "components/c.pagination"; -html { - @include set-font-face(); -} - .example { margin: $mu100; } diff --git a/src/docs/Components/Pagination/previews/pagination-default.preview.scss b/src/docs/Components/Pagination/previews/pagination-default.preview.scss index c5d59b409..2fc69716d 100644 --- a/src/docs/Components/Pagination/previews/pagination-default.preview.scss +++ b/src/docs/Components/Pagination/previews/pagination-default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.button"; @import "components/c.pagination"; diff --git a/src/docs/Components/Pagination/previews/pagination.preview.scss b/src/docs/Components/Pagination/previews/pagination.preview.scss index c5d59b409..2fc69716d 100644 --- a/src/docs/Components/Pagination/previews/pagination.preview.scss +++ b/src/docs/Components/Pagination/previews/pagination.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.select"; @import "components/c.button"; @import "components/c.pagination"; diff --git a/src/docs/Components/ProgressBar/code.mdx b/src/docs/Components/ProgressBar/code.mdx index 82e04e50c..f246d4592 100644 --- a/src/docs/Components/ProgressBar/code.mdx +++ b/src/docs/Components/ProgressBar/code.mdx @@ -35,6 +35,8 @@ The code of the **ProgressBar** component is structured as follows: ``` + + The mc-progressbar__indicator div must always be present in your code to ensure a good level of accessibility to the component. diff --git a/src/docs/Components/ProgressBar/previews/default.preview.html b/src/docs/Components/ProgressBar/previews/default.preview.html new file mode 100644 index 000000000..62acece43 --- /dev/null +++ b/src/docs/Components/ProgressBar/previews/default.preview.html @@ -0,0 +1,15 @@ +
+
+
+   +
+
25%
+
+
diff --git a/src/docs/Components/ProgressBar/previews/default.preview.scss b/src/docs/Components/ProgressBar/previews/default.preview.scss new file mode 100644 index 000000000..5f9150a79 --- /dev/null +++ b/src/docs/Components/ProgressBar/previews/default.preview.scss @@ -0,0 +1,8 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.progressbar"; + +.example { + padding: $mu200; + margin: 0 auto; +} diff --git a/src/docs/Components/ProgressBar/previews/percentage-half.preview.scss b/src/docs/Components/ProgressBar/previews/percentage-half.preview.scss index 30d1da483..5f9150a79 100644 --- a/src/docs/Components/ProgressBar/previews/percentage-half.preview.scss +++ b/src/docs/Components/ProgressBar/previews/percentage-half.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.progressbar"; .example { diff --git a/src/docs/Components/ProgressBar/previews/percentage.preview.scss b/src/docs/Components/ProgressBar/previews/percentage.preview.scss index 30d1da483..5f9150a79 100644 --- a/src/docs/Components/ProgressBar/previews/percentage.preview.scss +++ b/src/docs/Components/ProgressBar/previews/percentage.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.progressbar"; .example { diff --git a/src/docs/Components/ProgressBar/previews/variations-sizes.preview.scss b/src/docs/Components/ProgressBar/previews/variations-sizes.preview.scss index 5e204ccf4..545e7506e 100644 --- a/src/docs/Components/ProgressBar/previews/variations-sizes.preview.scss +++ b/src/docs/Components/ProgressBar/previews/variations-sizes.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.progressbar"; .example { @@ -12,7 +8,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/RatingStars/index.mdx b/src/docs/Components/RatingStars/index.mdx index 4dcb903af..ef0b95ecb 100644 --- a/src/docs/Components/RatingStars/index.mdx +++ b/src/docs/Components/RatingStars/index.mdx @@ -12,9 +12,6 @@ links: webComponent: status: 'ready' link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-ratings' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-ratingstars' status: figma: 'ready' scss: 'ready' diff --git a/src/docs/Components/RatingStars/previews/stars-input-all-sizes.preview.scss b/src/docs/Components/RatingStars/previews/stars-input-all-sizes.preview.scss index 643d6d33b..645f98572 100644 --- a/src/docs/Components/RatingStars/previews/stars-input-all-sizes.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-input-all-sizes.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-input"; diff --git a/src/docs/Components/RatingStars/previews/stars-input-basic.preview.scss b/src/docs/Components/RatingStars/previews/stars-input-basic.preview.scss index 4644803f1..8469472bc 100644 --- a/src/docs/Components/RatingStars/previews/stars-input-basic.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-input-basic.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-input"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-all-sizes.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-all-sizes.preview.scss index c168c4f93..25d456447 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-all-sizes.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-all-sizes.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; .example { diff --git a/src/docs/Components/RatingStars/previews/stars-result-all-states.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-all-states.preview.scss index 9dea48232..97cdd0005 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-all-states.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-all-states.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-basic.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-basic.preview.scss index 75d39cf0a..a76943429 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-basic.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-basic.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-label-link.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-label-link.preview.scss index a197c4f33..e0757b7af 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-label-link.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-label-link.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-label.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-label.preview.scss index a197c4f33..e0757b7af 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-label.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-label.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-overall.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-overall.preview.scss index a197c4f33..e0757b7af 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-overall.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-overall.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.links"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-size-l.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-size-l.preview.scss index 75d39cf0a..a76943429 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-size-l.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-size-l.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-size-m.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-size-m.preview.scss index 75d39cf0a..a76943429 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-size-m.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-size-m.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-size-s.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-size-s.preview.scss index 75d39cf0a..a76943429 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-size-s.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-size-s.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-result"; diff --git a/src/docs/Components/RatingStars/previews/stars-result-size-xl.preview.scss b/src/docs/Components/RatingStars/previews/stars-result-size-xl.preview.scss index 75d39cf0a..a76943429 100644 --- a/src/docs/Components/RatingStars/previews/stars-result-size-xl.preview.scss +++ b/src/docs/Components/RatingStars/previews/stars-result-size-xl.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "components/c.stars-result"; diff --git a/src/docs/Components/Stepper/index.mdx b/src/docs/Components/Stepper/index.mdx index 3cde4241a..c26dd5c73 100644 --- a/src/docs/Components/Stepper/index.mdx +++ b/src/docs/Components/Stepper/index.mdx @@ -2,16 +2,6 @@ title: 'Stepper' order: 1 description: "A stepper visually indicates the progress of a user's journey on pre-defined steps to complete." -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mstepper' - status: 'ready' - freemarker: - status: 'ready' - link: 'https://solid-bassoon-011c369c.pages.github.io/pages/3_Components/stepper/' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-stepper' status: scss: 'ready' --- diff --git a/src/docs/Components/Stepper/previews/compact.preview.scss b/src/docs/Components/Stepper/previews/compact.preview.scss index 330bd251f..b31fdab0a 100644 --- a/src/docs/Components/Stepper/previews/compact.preview.scss +++ b/src/docs/Components/Stepper/previews/compact.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.stepper"; .example { @@ -14,7 +10,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Stepper/previews/default.preview.scss b/src/docs/Components/Stepper/previews/default.preview.scss index 330bd251f..b31fdab0a 100644 --- a/src/docs/Components/Stepper/previews/default.preview.scss +++ b/src/docs/Components/Stepper/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.stepper"; .example { @@ -14,7 +10,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Stepper/previews/three-and-more.preview.scss b/src/docs/Components/Stepper/previews/three-and-more.preview.scss index 330bd251f..b31fdab0a 100644 --- a/src/docs/Components/Stepper/previews/three-and-more.preview.scss +++ b/src/docs/Components/Stepper/previews/three-and-more.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.stepper"; .example { @@ -14,7 +10,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Stepper/previews/up-to-three.preview.scss b/src/docs/Components/Stepper/previews/up-to-three.preview.scss index 330bd251f..b31fdab0a 100644 --- a/src/docs/Components/Stepper/previews/up-to-three.preview.scss +++ b/src/docs/Components/Stepper/previews/up-to-three.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.stepper"; .example { @@ -14,7 +10,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Stepper/previews/with-link.preview.scss b/src/docs/Components/Stepper/previews/with-link.preview.scss index 330bd251f..b31fdab0a 100644 --- a/src/docs/Components/Stepper/previews/with-link.preview.scss +++ b/src/docs/Components/Stepper/previews/with-link.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.stepper"; .example { @@ -14,7 +10,7 @@ html { &__title { @include set-font-scale("07", "m"); - @include set-font-weight("semi-bold"); + @include set-font-face("semi-bold"); background: $color-grey-100; margin: $mu300 0 $mu100; diff --git a/src/docs/Components/Tabs/code.mdx b/src/docs/Components/Tabs/code.mdx index e0abf0f18..88a896667 100644 --- a/src/docs/Components/Tabs/code.mdx +++ b/src/docs/Components/Tabs/code.mdx @@ -58,6 +58,8 @@ Depending on the context of use, the tab can have several states: - Active - Disabled + + ### Variations #### Aligned to a container diff --git a/src/docs/Components/Tabs/index.mdx b/src/docs/Components/Tabs/index.mdx index 36ff34343..2c245b2a2 100644 --- a/src/docs/Components/Tabs/index.mdx +++ b/src/docs/Components/Tabs/index.mdx @@ -6,12 +6,6 @@ links: vue: link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-mtab' status: 'ready' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-tabs' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-tabs' status: figma: 'ready' scss: 'ready' diff --git a/src/docs/Components/Tabs/previews/tabs-all-states.preview.html b/src/docs/Components/Tabs/previews/tabs-all-states.preview.html new file mode 100644 index 000000000..fe83b91df --- /dev/null +++ b/src/docs/Components/Tabs/previews/tabs-all-states.preview.html @@ -0,0 +1,50 @@ +
+ +
+
+ +
+
+ + +
+
+ +
+
+ + +
+
+ +
+
+
diff --git a/src/docs/Components/Tabs/previews/tabs-all-states.preview.scss b/src/docs/Components/Tabs/previews/tabs-all-states.preview.scss new file mode 100644 index 000000000..cb3a79aeb --- /dev/null +++ b/src/docs/Components/Tabs/previews/tabs-all-states.preview.scss @@ -0,0 +1,15 @@ +@import "settings-tools/all-settings"; +@include import-font-families(); +@import "components/c.tabs"; + +body { + background-color: #e5e5e5; +} + +.example { + margin: $mu200; + + &__item { + margin: $mu175; + } +} diff --git a/src/docs/Components/Tabs/previews/tabs-container.preview.scss b/src/docs/Components/Tabs/previews/tabs-container.preview.scss index 840334ef8..37274be17 100644 --- a/src/docs/Components/Tabs/previews/tabs-container.preview.scss +++ b/src/docs/Components/Tabs/previews/tabs-container.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "layouts/l.container"; @import "components/c.tabs"; diff --git a/src/docs/Components/Tabs/previews/tabs-default.preview.scss b/src/docs/Components/Tabs/previews/tabs-default.preview.scss index e4cab9da5..8f104c04e 100644 --- a/src/docs/Components/Tabs/previews/tabs-default.preview.scss +++ b/src/docs/Components/Tabs/previews/tabs-default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tabs"; body { diff --git a/src/docs/Components/Tabs/previews/tabs-dropdown.preview.scss b/src/docs/Components/Tabs/previews/tabs-dropdown.preview.scss index d9ddf066b..8a18f9678 100644 --- a/src/docs/Components/Tabs/previews/tabs-dropdown.preview.scss +++ b/src/docs/Components/Tabs/previews/tabs-dropdown.preview.scss @@ -1,17 +1,14 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "components/c.tabs"; @import "components/c.select"; -html { - @include set-font-face(); -} - body { background-color: #e5e5e5; } .example { + @include set-font-face(); + margin: $mu200; } diff --git a/src/docs/Components/Tabs/previews/tabs-fullwidth.preview.scss b/src/docs/Components/Tabs/previews/tabs-fullwidth.preview.scss index ebade0444..a2461f323 100644 --- a/src/docs/Components/Tabs/previews/tabs-fullwidth.preview.scss +++ b/src/docs/Components/Tabs/previews/tabs-fullwidth.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tabs"; body { diff --git a/src/docs/Components/Tabs/previews/tabs-no-divider.preview.scss b/src/docs/Components/Tabs/previews/tabs-no-divider.preview.scss index c7e5d4a8b..417f88856 100644 --- a/src/docs/Components/Tabs/previews/tabs-no-divider.preview.scss +++ b/src/docs/Components/Tabs/previews/tabs-no-divider.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tabs"; body { diff --git a/src/docs/Components/Tabs/previews/tabs-with-icons.preview.scss b/src/docs/Components/Tabs/previews/tabs-with-icons.preview.scss index e4cab9da5..8f104c04e 100644 --- a/src/docs/Components/Tabs/previews/tabs-with-icons.preview.scss +++ b/src/docs/Components/Tabs/previews/tabs-with-icons.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tabs"; body { diff --git a/src/docs/Components/Tag/index.mdx b/src/docs/Components/Tag/index.mdx index cbf68339b..f9eebf2ad 100644 --- a/src/docs/Components/Tag/index.mdx +++ b/src/docs/Components/Tag/index.mdx @@ -12,9 +12,6 @@ links: webComponent: status: 'ready' link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-tag' - react: - status: 'ready' - link: 'https://adeo.github.io/mozaic-react/?path=/story/components-tag' status: figma: 'ready' scss: 'ready' diff --git a/src/docs/Components/Tag/previews/Tag.preview.scss b/src/docs/Components/Tag/previews/Tag.preview.scss index 5eb5b8a6b..9c8da1022 100644 --- a/src/docs/Components/Tag/previews/Tag.preview.scss +++ b/src/docs/Components/Tag/previews/Tag.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tag"; .example { diff --git a/src/docs/Components/Tag/previews/TagLink.preview.scss b/src/docs/Components/Tag/previews/TagLink.preview.scss index 5eb5b8a6b..9c8da1022 100644 --- a/src/docs/Components/Tag/previews/TagLink.preview.scss +++ b/src/docs/Components/Tag/previews/TagLink.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tag"; .example { diff --git a/src/docs/Components/Tag/previews/TagList.preview.scss b/src/docs/Components/Tag/previews/TagList.preview.scss index c67da5ee4..1819f5129 100644 --- a/src/docs/Components/Tag/previews/TagList.preview.scss +++ b/src/docs/Components/Tag/previews/TagList.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tag"; .example { diff --git a/src/docs/Components/Tag/previews/TagRemovable.preview.scss b/src/docs/Components/Tag/previews/TagRemovable.preview.scss index 5eb5b8a6b..9c8da1022 100644 --- a/src/docs/Components/Tag/previews/TagRemovable.preview.scss +++ b/src/docs/Components/Tag/previews/TagRemovable.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tag"; .example { diff --git a/src/docs/Components/Tag/previews/TagSelectable.preview.scss b/src/docs/Components/Tag/previews/TagSelectable.preview.scss index 5eb5b8a6b..9c8da1022 100644 --- a/src/docs/Components/Tag/previews/TagSelectable.preview.scss +++ b/src/docs/Components/Tag/previews/TagSelectable.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tag"; .example { diff --git a/src/docs/Components/Tag/previews/TagText.preview.scss b/src/docs/Components/Tag/previews/TagText.preview.scss index 5eb5b8a6b..9c8da1022 100644 --- a/src/docs/Components/Tag/previews/TagText.preview.scss +++ b/src/docs/Components/Tag/previews/TagText.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tag"; .example { diff --git a/src/docs/Components/Tooltip/previews/default.preview.scss b/src/docs/Components/Tooltip/previews/default.preview.scss index ea957a0e6..8c0516302 100644 --- a/src/docs/Components/Tooltip/previews/default.preview.scss +++ b/src/docs/Components/Tooltip/previews/default.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tooltip"; .example { diff --git a/src/docs/Components/Tooltip/previews/nopointer.preview.scss b/src/docs/Components/Tooltip/previews/nopointer.preview.scss index 209406807..b45b323fe 100644 --- a/src/docs/Components/Tooltip/previews/nopointer.preview.scss +++ b/src/docs/Components/Tooltip/previews/nopointer.preview.scss @@ -1,9 +1,5 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); -html { - @include set-font-face(); -} @import "components/c.tooltip"; .example { diff --git a/src/docs/Foundations/Icons/catalog.mdx b/src/docs/Foundations/Icons/catalog.mdx index 36a80acff..38c849e77 100644 --- a/src/docs/Foundations/Icons/catalog.mdx +++ b/src/docs/Foundations/Icons/catalog.mdx @@ -1,6 +1,6 @@ --- title: 'Monochrome icons' -order: 3 +order: 2 --- diff --git a/src/docs/Foundations/Icons/catalogColor.mdx b/src/docs/Foundations/Icons/catalogColor.mdx index 81b04cfd2..816052d1a 100644 --- a/src/docs/Foundations/Icons/catalogColor.mdx +++ b/src/docs/Foundations/Icons/catalogColor.mdx @@ -1,6 +1,6 @@ --- title: 'Coloured icons' -order: 4 +order: 3 --- diff --git a/src/docs/Foundations/Icons/code.mdx b/src/docs/Foundations/Icons/code.mdx deleted file mode 100644 index 85f440ec1..000000000 --- a/src/docs/Foundations/Icons/code.mdx +++ /dev/null @@ -1,87 +0,0 @@ ---- -title: 'Code' -order: 2 -status: - scss: 'ready' - figma: 'ready' - react: 'ready' ---- - -> Icons are considered as static assets. They are available in SVG and PDF, also they can be used as Vue, React and Svelte components. - - -## Import - -The icon set can be downloaded using this link: - Download the Icon Kit here - -The icon set can be added to your project dependencies: - -Using NPM: -``` -npm install --save-dev @mozaic-ds/icons -``` - -Using Yarn: -``` -yarn add @mozaic-ds/icons -``` - -## Usage -All icon components are only wrappers for SVG. It has been done that way to facilitate the integration in your technology. - -### VueJs - -If you are a `@mozaic-ds/vue` or `@mozaic-ds/vue-3` users, you will be able to integrate the MIcon component. -To know more about the `MIcon` follow [this documentation](https://adeo.github.io/mozaic-vue/?path=/docs/components-micon--default-story) - -### Angular - -The icon set doesn't contains Angular components. You must use the svgs icon type. -In order to add the svgs to your project you can add the following code to your build: - -``` -{ - "glob": "**/*", - "input": "./node_modules/@mozaic-ds/icons/svg/", - "output": "./assets/images" -} -``` - -### React - -In order to use the icon set on React, you must install the `@mozaic-ds/icons` package. -Once the package install you can import the needed icon into your code. -> To find the icon's name, please refer to the icon catalog page. - -```js -import {FullScreen48} from '@mozaic-ds/icons/react' -``` - -### Web components - -In order to use the icon set on any technology, you can use our web components version. - -You must install the `mozaic-web-components` package. - -``` -npm install --save-dev @mozaic-ds/mozaic-web-components -``` - -You have to add the following to your code in order to import the web component. - -```js -import ArrowArrowRight16 from '@mozaic-ds/mozaic-web-components/public/icons/ArrowArrowRight16.js'; - -if (!customElements.get('navigation-arrow-arrow--right-16px')) { - customElements.define( - 'navigation-arrow-arrow--right-16px', - ArrowArrowRight16 - ) -} -``` - -In order to use the web component you have to add to your HTML this: -```html - -``` \ No newline at end of file diff --git a/src/docs/Foundations/Icons/iconsAnatomy.jpg b/src/docs/Foundations/Icons/iconsAnatomy.jpg new file mode 100644 index 000000000..6371daaf9 Binary files /dev/null and b/src/docs/Foundations/Icons/iconsAnatomy.jpg differ diff --git a/src/docs/Foundations/Icons/index.mdx b/src/docs/Foundations/Icons/index.mdx index 25e703a04..12e9e9240 100644 --- a/src/docs/Foundations/Icons/index.mdx +++ b/src/docs/Foundations/Icons/index.mdx @@ -1,19 +1,10 @@ --- title: 'Icons' order: 1 -links: - vue: - link: 'https://adeo.github.io/mozaic-vue/?path=/story/components-micon' - status: 'ready' - freemarker: - status: 'ready' - link: 'https://solid-bassoon-011c369c.pages.github.io/pages/2_Foundations/Icons/' - webComponent: - status: 'ready' - link: 'https://ubiquitous-giggle-7b5b6e33.pages.github.io/?path=/story/components-icons' status: scss: 'ready' figma: 'ready' + react: 'ready' --- > An icon is a graphic representation of an object, a message or a movement. It's different from an illustration because of its simplistic aspect. An icon must be **recognisable at first sight** so that the user can understand the information or the action it is intended to represent. Icons may be a visual guide to help the user to navigate on leroymerlin.fr faster. diff --git a/src/docs/Foundations/Icons/specs.mdx b/src/docs/Foundations/Icons/specs.mdx new file mode 100644 index 000000000..6c4624268 --- /dev/null +++ b/src/docs/Foundations/Icons/specs.mdx @@ -0,0 +1,8 @@ +--- +title: 'Specs' +order: 6 +--- + +## Anatomy + +![iconsAnatomy](iconsAnatomy.jpg) diff --git a/src/docs/Foundations/Layout/Grid/previews/basic.preview.scss b/src/docs/Foundations/Layout/Grid/previews/basic.preview.scss index c44bd2ee2..81745193c 100644 --- a/src/docs/Foundations/Layout/Grid/previews/basic.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/basic.preview.scss @@ -1,9 +1,9 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; // you generally want the container as well @import "layouts/l.flexy"; + .example { @include set-font-scale("04", "s"); @include set-font-face("regular"); diff --git a/src/docs/Foundations/Layout/Grid/previews/flexy.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexy.preview.scss index 0e3e6c742..725e250eb 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexy.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexy.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyAlign.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyAlign.preview.scss index 328e86964..7f6cc6bd5 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyAlign.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyAlign.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyCentered.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyCentered.preview.scss index b4d06b0e8..a4ec9dd31 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyCentered.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyCentered.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyDefaultCol.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyDefaultCol.preview.scss index d245ccc59..bca432901 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyDefaultCol.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyDefaultCol.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyNested.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyNested.preview.scss index e8430d81e..b25e175e9 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyNested.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyNested.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyOrder.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyOrder.preview.scss index 22fb100a6..d9aa8ea7f 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyOrder.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyOrder.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyPush.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyPush.preview.scss index 98404cca1..1f8f7a7b6 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyPush.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyPush.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyResponsive.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyResponsive.preview.scss index 0e3e6c742..725e250eb 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyResponsive.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyResponsive.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Grid/previews/flexyWrap.preview.scss b/src/docs/Foundations/Layout/Grid/previews/flexyWrap.preview.scss index 679b2be06..d343481c7 100644 --- a/src/docs/Foundations/Layout/Grid/previews/flexyWrap.preview.scss +++ b/src/docs/Foundations/Layout/Grid/previews/flexyWrap.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "layouts/l.container"; diff --git a/src/docs/Foundations/Layout/Responsive/previews/responsive.preview.scss b/src/docs/Foundations/Layout/Responsive/previews/responsive.preview.scss index f4d2b8c44..bf6049e91 100644 --- a/src/docs/Foundations/Layout/Responsive/previews/responsive.preview.scss +++ b/src/docs/Foundations/Layout/Responsive/previews/responsive.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; $example-colors: ( diff --git a/src/docs/Foundations/Spacing/MagicUnit/previews/magic-unit.preview.scss b/src/docs/Foundations/Spacing/MagicUnit/previews/magic-unit.preview.scss index 0a061c6b8..bf2ace5ee 100644 --- a/src/docs/Foundations/Spacing/MagicUnit/previews/magic-unit.preview.scss +++ b/src/docs/Foundations/Spacing/MagicUnit/previews/magic-unit.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @@ -72,7 +71,6 @@ body { line-height: 2; } - /* stylelint-disable */ @each $key in $magic-units-sizes { $iterator: $iterator - 1; @@ -90,6 +88,5 @@ body { } } } - /* stylelint-enable */ } } diff --git a/src/docs/Foundations/Spacing/MagicUnit/previews/mdu-magic-unit-grid.preview.scss b/src/docs/Foundations/Spacing/MagicUnit/previews/mdu-magic-unit-grid.preview.scss index af1039a4f..b3069c4c9 100644 --- a/src/docs/Foundations/Spacing/MagicUnit/previews/mdu-magic-unit-grid.preview.scss +++ b/src/docs/Foundations/Spacing/MagicUnit/previews/mdu-magic-unit-grid.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "dev-utils/qdu.magic-unit-grid"; diff --git a/src/docs/Foundations/Spacing/MarginAndPaddings/previews/margins.preview.scss b/src/docs/Foundations/Spacing/MarginAndPaddings/previews/margins.preview.scss index f4ec61b05..9ce22102a 100644 --- a/src/docs/Foundations/Spacing/MarginAndPaddings/previews/margins.preview.scss +++ b/src/docs/Foundations/Spacing/MarginAndPaddings/previews/margins.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "utilities/u.margin"; diff --git a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBody-variations.preview.scss b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBody-variations.preview.scss index 8b59a00f9..a58cd534d 100644 --- a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBody-variations.preview.scss +++ b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBody-variations.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); diff --git a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyLarge.preview.scss b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyLarge.preview.scss index 8b59a00f9..a58cd534d 100644 --- a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyLarge.preview.scss +++ b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyLarge.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); diff --git a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyMedium.preview.scss b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyMedium.preview.scss index 8b59a00f9..a58cd534d 100644 --- a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyMedium.preview.scss +++ b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodyMedium.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); diff --git a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodySmall.preview.scss b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodySmall.preview.scss index 8b59a00f9..a58cd534d 100644 --- a/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodySmall.preview.scss +++ b/src/docs/Foundations/Typography/BodyStyles/previews/typographyBodySmall.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); diff --git a/src/docs/Foundations/Typography/FontFamilies/previews/font-families.preview.scss b/src/docs/Foundations/Typography/FontFamilies/previews/font-families.preview.scss index 334d6a92c..75c8b85dd 100644 --- a/src/docs/Foundations/Typography/FontFamilies/previews/font-families.preview.scss +++ b/src/docs/Foundations/Typography/FontFamilies/previews/font-families.preview.scss @@ -3,7 +3,6 @@ $local-config: ( font-path: "/fonts", ); -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); diff --git a/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero-variations.preview.scss b/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero-variations.preview.scss index 658886955..fb2f3ad6e 100644 --- a/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero-variations.preview.scss +++ b/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero-variations.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.heros"; diff --git a/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero.preview.scss b/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero.preview.scss index 473a85cf5..665bc006b 100644 --- a/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero.preview.scss +++ b/src/docs/Foundations/Typography/HeroStyles/previews/typographyHero.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.heros"; diff --git a/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-line-heights.preview.scss b/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-line-heights.preview.scss index cddc7f33a..03f6ac628 100644 --- a/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-line-heights.preview.scss +++ b/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-line-heights.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @@ -22,7 +21,8 @@ $lines-heights: ("xs", "s", "m", "l"); &__title-lh { flex: 0 0 48%; - box-shadow: 0 1px 0 0 rgba($color-secondary-red-500, 0.5), + box-shadow: + 0 1px 0 0 rgba($color-secondary-red-500, 0.5), 0 -1px 0 0 rgba($color-secondary-red-500, 0.5); @each $key in $lines-heights { @@ -35,7 +35,8 @@ $lines-heights: ("xs", "s", "m", "l"); &__paragraph-lh { flex: 0 0 48%; color: $color-grey-700; - box-shadow: 0 1px 0 0 rgba($color-secondary-red-500, 0.5), + box-shadow: + 0 1px 0 0 rgba($color-secondary-red-500, 0.5), 0 -1px 0 0 rgba($color-secondary-red-500, 0.5); @each $key in $lines-heights { diff --git a/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-scale.preview.scss b/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-scale.preview.scss index 1574e329e..ead18992b 100644 --- a/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-scale.preview.scss +++ b/src/docs/Foundations/Typography/ScaleAndSizes/previews/font-scale.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @@ -13,7 +12,8 @@ $font-sizes: get-token(size, font); box-shadow: 0 1px 0 0 rgba($color-secondary-red-500, 0.5); &:first-child() { - box-shadow: 0 1px 0 0 rgba($color-secondary-red-500, 0.5), + box-shadow: + 0 1px 0 0 rgba($color-secondary-red-500, 0.5), 0 -1px 0 0 rgba($color-secondary-red-500, 0.5); } diff --git a/src/docs/Foundations/Typography/TextColors/previews/font-colors.preview.scss b/src/docs/Foundations/Typography/TextColors/previews/font-colors.preview.scss index 97c55deb2..ee034666a 100644 --- a/src/docs/Foundations/Typography/TextColors/previews/font-colors.preview.scss +++ b/src/docs/Foundations/Typography/TextColors/previews/font-colors.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); diff --git a/src/docs/Foundations/Utilities/BorderRadius/previews/example.preview.scss b/src/docs/Foundations/Utilities/BorderRadius/previews/example.preview.scss index 81202269f..0aeb44667 100644 --- a/src/docs/Foundations/Utilities/BorderRadius/previews/example.preview.scss +++ b/src/docs/Foundations/Utilities/BorderRadius/previews/example.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/BorderRadius/previews/large.preview.scss b/src/docs/Foundations/Utilities/BorderRadius/previews/large.preview.scss index 2add2f16b..591733fae 100644 --- a/src/docs/Foundations/Utilities/BorderRadius/previews/large.preview.scss +++ b/src/docs/Foundations/Utilities/BorderRadius/previews/large.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/BorderRadius/previews/medium.preview.scss b/src/docs/Foundations/Utilities/BorderRadius/previews/medium.preview.scss index c08e1fafa..7a43aa42c 100644 --- a/src/docs/Foundations/Utilities/BorderRadius/previews/medium.preview.scss +++ b/src/docs/Foundations/Utilities/BorderRadius/previews/medium.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/BorderRadius/previews/small.preview.scss b/src/docs/Foundations/Utilities/BorderRadius/previews/small.preview.scss index 81202269f..0aeb44667 100644 --- a/src/docs/Foundations/Utilities/BorderRadius/previews/small.preview.scss +++ b/src/docs/Foundations/Utilities/BorderRadius/previews/small.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/Images/previews/ratio-with-helpers.preview.scss b/src/docs/Foundations/Utilities/Images/previews/ratio-with-helpers.preview.scss index 42bd575f1..0ed4b9e6d 100644 --- a/src/docs/Foundations/Utilities/Images/previews/ratio-with-helpers.preview.scss +++ b/src/docs/Foundations/Utilities/Images/previews/ratio-with-helpers.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @import "utilities/u.ratio"; diff --git a/src/docs/Foundations/Utilities/Images/previews/ratio-with-mixin.preview.scss b/src/docs/Foundations/Utilities/Images/previews/ratio-with-mixin.preview.scss index a7364d3d9..8f23d6638 100644 --- a/src/docs/Foundations/Utilities/Images/previews/ratio-with-mixin.preview.scss +++ b/src/docs/Foundations/Utilities/Images/previews/ratio-with-mixin.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; .example { diff --git a/src/docs/Foundations/Utilities/Shadows/previews/example.preview.scss b/src/docs/Foundations/Utilities/Shadows/previews/example.preview.scss index 7d2ecba26..e50ac0322 100644 --- a/src/docs/Foundations/Utilities/Shadows/previews/example.preview.scss +++ b/src/docs/Foundations/Utilities/Shadows/previews/example.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/Shadows/previews/large.preview.scss b/src/docs/Foundations/Utilities/Shadows/previews/large.preview.scss index dad97307c..3c08d9e14 100644 --- a/src/docs/Foundations/Utilities/Shadows/previews/large.preview.scss +++ b/src/docs/Foundations/Utilities/Shadows/previews/large.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/Shadows/previews/medium.preview.scss b/src/docs/Foundations/Utilities/Shadows/previews/medium.preview.scss index 567889156..33bdad843 100644 --- a/src/docs/Foundations/Utilities/Shadows/previews/medium.preview.scss +++ b/src/docs/Foundations/Utilities/Shadows/previews/medium.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/Foundations/Utilities/Shadows/previews/small.preview.scss b/src/docs/Foundations/Utilities/Shadows/previews/small.preview.scss index dfc59301b..242a458c5 100644 --- a/src/docs/Foundations/Utilities/Shadows/previews/small.preview.scss +++ b/src/docs/Foundations/Utilities/Shadows/previews/small.preview.scss @@ -1,4 +1,3 @@ -@import "tokens"; @import "settings-tools/all-settings"; @include import-font-families(); @import "typography/t.all-base-typography"; diff --git a/src/docs/GetStarted/Developers/Configuration/index.mdx b/src/docs/GetStarted/Developers/Configuration/index.mdx index d2da8e84b..6185add08 100644 --- a/src/docs/GetStarted/Developers/Configuration/index.mdx +++ b/src/docs/GetStarted/Developers/Configuration/index.mdx @@ -32,7 +32,7 @@ Specified paths will be added to the default ones. './node_modules/@mozaic-ds/styles/layout/', './node_modules/@mozaic-ds/styles/utilities/', './node_modules/@mozaic-ds/styles/components/', - './node_modules/@mozaic-ds/tokens/build/lm/scss/', + './node_modules/@mozaic-ds/tokens/build/scss/', './node_modules/', ] ``` @@ -82,37 +82,15 @@ module.exports = { } ``` -### `platforms` - -By default, we generate tokens that can be consumed as `scss` or `css` variable files. - -However, you may want to generate tokens that can be consumed by another technology. - -To do so, you just have to add inside your `mozaic.config.js` filde in the `tokens` object, a `platform` key, which takes as value an array listing the desired technologies. - -```js -module.exports = { - tokens: { - platforms: ['js', 'ios'], - }, -} -``` - -- Default values: ['scss'] -- Allowed values: `css`, `js`, `android`, `ios`, `ios-swift` - -> Note that the values you add in the `tokens.platforms` array are in addition to the default values, but do not replace them. - ## stylelint options: ### `stylelint.disabled -Allow you to disabled Mozaic built-in config. +Allow you to disabled Mozaic built-in config. **Default values: 'false'** **Example: ** - ```js -disbaled: true | false + disbaled: true | false ``` ### `stylelint.caseStyle`: String or Regex @@ -122,13 +100,8 @@ Allow you to choose the case style to lint. You can add your own Regex rule to l **Default values: 'kebab-case'** **Example: ** - ```js -caseStyle: 'kebab-case' | - 'camelCase' | - 'snake_case' | - 'PascalCase' | - /^[a-z]+(_[a-z]+)*$/ + caseStyle: 'kebab-case' | 'camelCase' | 'snake_case' | 'PascalCase' | /^[a-z]+(_[a-z]+)*$/ ``` ### `stylelint.bemEntitiesDelimiters`: Object @@ -155,11 +128,11 @@ Allow you to specify additional prefixes. Multiple prefixes can be added. prefixes: ['lrc-', 'lrl-', 'LrUtility-'], ``` -**Full example: ** +**Full example: ** ```js module.exports = { - stylelint: { + stylelint: { caseStyle: 'kebab-case', // ['camelCase', 'snake_case', 'PascalCase'] bemEntitiesDelimiters: { modifier: '--', @@ -177,32 +150,30 @@ module.exports = { ### `browserslist.disabled -Allow you to disabled Mozaic built-in config. +Allow you to disabled Mozaic built-in config. **Default values: 'false'** **Example: ** - ```js -disabled: true | false + disabled: true | false ``` -`browserslist` is used to define custom browsers to use for SCSS compilation. +`browserslist` is used to define custom browsers to use for SCSS compilation. -** Default value: ** +** Default value: ** ```js -;['> 0.3%', 'last 3 version', 'IE > 10'] +['> 0.3%', 'last 3 version', 'IE > 10'] ``` **Full example: ** - ```js module.exports = { - browserslist: ['last 2 versions', 'firefox >= 45', 'IE >= 11'], + browserslist: ['last 2 versions', 'firefox >= 45', 'IE >= 11'] } ``` -## PurgeCSS option: +## PurgeCSS option: ### `purgecss` : Object @@ -210,11 +181,10 @@ Allow you to clean up CSS from your sources files. **Default values: null** **Example: ** - ```js purgecss: { content: ['./src/**/*.html', './src/**/*.js', './src/**/*.vue'] } ``` -To see all available options, referer to the [official documentation of the PostCSS plugin](https://purgecss.com/configuration.html#options) +To see all available options, referer to the [official documentation of the PostCSS plugin](https://purgecss.com/configuration.html#options) \ No newline at end of file diff --git a/src/docs/GetStarted/Developers/Installation/import.mdx b/src/docs/GetStarted/Developers/Installation/import.mdx index 8c18f321a..5e36f245a 100644 --- a/src/docs/GetStarted/Developers/Installation/import.mdx +++ b/src/docs/GetStarted/Developers/Installation/import.mdx @@ -42,7 +42,7 @@ Compiling a file importing only settings would output an empty file. ### Import Mozaic SCSS files: -It is important that you follow the ITCSS/ADS import order. +It is important that you follow our ITCSS/ADS [import order](https://gael-boyenval.gitbook.io/atomic-design-css-architecture-with-itcss-bem-sass/principles/unifying-itcss-with-ads#summarize-the-new-architecture): ![ITCSS/ADS architecture](itcss-atomic-prefixes.jpg) diff --git a/src/docs/GetStarted/Developers/Installation/postcss.mdx b/src/docs/GetStarted/Developers/Installation/postcss.mdx index 97a5514c0..2018b45ba 100644 --- a/src/docs/GetStarted/Developers/Installation/postcss.mdx +++ b/src/docs/GetStarted/Developers/Installation/postcss.mdx @@ -23,6 +23,7 @@ The Mozaic postCSS plugin list contains: - **nodeSass:** compile SCSS into css - **autoprefixer:** automatically add browser prefixes - **mqpacker on demand:** a custom built media queries regrouper based on comments +- **postcss-base64:** url encode svg in css - **cssnano:** optimize and minify the CSS code ### A) Using a configuration file: @@ -115,8 +116,8 @@ Now you need to update the builder option in the `angular.json` fields to the fo "./node_modules/@mozaic-ds/styles/settings-tools/", "./node_modules/@mozaic-ds/styles/typography/", "./node_modules/@mozaic-ds/styles/utilities/", - "./node_modules/@mozaic-ds/tokens/build/lm/css/", - "./node_modules/@mozaic-ds/tokens/build/lm/scss/", + "./node_modules/@mozaic-ds/tokens/build/css/", + "./node_modules/@mozaic-ds/tokens/build/scss/", "./node_modules/" ] } @@ -163,13 +164,13 @@ In order to do that you can edit your `.env` config file (or create one) at the Using Unix filesystem: ```bash -SASS_PATH=./node_modules:./node_modules/@mozaic-ds/tokens/build/lm/scss/:./node_modules/@mozaic-ds/styles/:./node_modules/@mozaic-ds/styles/settings-tools/:./node_modules/@mozaic-ds/styles/typography/:./node_modules/@mozaic-ds/styles/layout/:./node_modules/@mozaic-ds/styles/utilities/:./node_modules/@mozaic-ds/styles/components/ +SASS_PATH=./node_modules:./node_modules/@mozaic-ds/tokens/build/scss/:./node_modules/@mozaic-ds/styles/:./node_modules/@mozaic-ds/styles/settings-tools/:./node_modules/@mozaic-ds/styles/typography/:./node_modules/@mozaic-ds/styles/layout/:./node_modules/@mozaic-ds/styles/utilities/:./node_modules/@mozaic-ds/styles/components/ ``` Using Windows filesystem: ```bash -SASS_PATH=./node_modules;./node_modules/@mozaic-ds/tokens/build/lm/scss/;./node_modules/@mozaic-ds/styles/;./node_modules/@mozaic-ds/styles/settings-tools/;./node_modules/@mozaic-ds/styles/typography/;./node_modules/@mozaic-ds/styles/layout/;./node_modules/@mozaic-ds/styles/utilities/;./node_modules/@mozaic-ds/styles/components/ +SASS_PATH=./node_modules;./node_modules/@mozaic-ds/tokens/build/scss/;./node_modules/@mozaic-ds/styles/;./node_modules/@mozaic-ds/styles/settings-tools/;./node_modules/@mozaic-ds/styles/typography/;./node_modules/@mozaic-ds/styles/layout/;./node_modules/@mozaic-ds/styles/utilities/;./node_modules/@mozaic-ds/styles/components/ ``` #### With postcss-loader < 4.0.0 diff --git a/src/docs/GetStarted/Developers/npmScriptTutorial/index.mdx b/src/docs/GetStarted/Developers/npmScriptTutorial/index.mdx index 915f23794..25d079297 100644 --- a/src/docs/GetStarted/Developers/npmScriptTutorial/index.mdx +++ b/src/docs/GetStarted/Developers/npmScriptTutorial/index.mdx @@ -296,12 +296,12 @@ Your browser should now look like this: @import 'components/_c.button'; ``` -note that you need to follow the ITCSS/ADS [import order](/GetStarted/Developers/Installation/import/) +note that you need to follow the ITCSS/ADS [import order](https://gael-boyenval.gitbook.io/atomic-design-css-architecture-with-itcss-bem-sass/principles/unifying-itcss-with-ads#summarize-the-new-architecture) ### If you want to create your own local components: Note that if you want to pipe your own components into the same as the Mozaic ones, the linter will ask of you to follow our guidelines. -Please read [our guidelines](Contributing/Developers/CSSConventions/) to write CSS that follows our conventions. +Please read [our guidelines](https://gael-boyenval.gitbook.io/atomic-design-css-architecture-with-itcss-bem-sass/) to write CSS that follows our conventions. If you choose not to follow our guideline, build your CSS apart from the Mozaic ones with the tool of your choice. diff --git a/src/docs/GetStarted/Developers/whatsincluded/index.mdx b/src/docs/GetStarted/Developers/whatsincluded/index.mdx index 55d89fca3..1549264f4 100644 --- a/src/docs/GetStarted/Developers/whatsincluded/index.mdx +++ b/src/docs/GetStarted/Developers/whatsincluded/index.mdx @@ -11,10 +11,11 @@ All the CSS and SCSS files that constitute the Mozaic SCSS framework. -Some variables are generated into and imported from the tokens package directory (`@mozaic-ds/tokens/build/lm/scss`). +Some variables are generated into and imported from the tokens package directory (`@mozaic-ds/tokens/build/scss`). + ```tree styles/ ├── settings-tools/ @@ -54,7 +55,8 @@ Tokens generation use [style-dictionary](https://amzn.github.io/style-dictionary
-`@mozaic-ds/tokens/build/{brand}/{platform}/**` + +`@mozaic-ds/tokens/build/{platform}/**` They are the generated tokens files that you may use, and they are built in a platform-specific directory. @@ -93,6 +95,7 @@ We are using Postcss to build SCSS files. The SASS compiler is included into the + ```tree css-dev-tools/ │ ├── postcssPluginConfig.js (an array of PostCSS plugins to build the scss files) diff --git a/yarn.lock b/yarn.lock index 129ed1894..05b8064d7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -45,17 +45,17 @@ dependencies: "@babel/highlight" "^7.10.4" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.22.5", "@babel/code-frame@^7.8.3": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.5.tgz#234d98e1551960604f1246e6475891a570ad5658" - integrity sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.14.0", "@babel/code-frame@^7.16.0", "@babel/code-frame@^7.18.6", "@babel/code-frame@^7.21.4", "@babel/code-frame@^7.8.3": + version "7.21.4" + resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.21.4.tgz#d0fa9e4413aca81f2b23b9442797bda1826edb39" + integrity sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== dependencies: - "@babel/highlight" "^7.22.5" + "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.5.tgz#b1f6c86a02d85d2dd3368a2b67c09add8cd0c255" - integrity sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.5", "@babel/compat-data@^7.21.5": + version "7.21.7" + resolved "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.21.7.tgz#61caffb60776e49a57ba61a88f02bedd8714f6bc" + integrity sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== "@babel/core@7.12.9": version "7.12.9" @@ -80,20 +80,20 @@ source-map "^0.5.0" "@babel/core@^7.11.6", "@babel/core@^7.12.16", "@babel/core@^7.12.3", "@babel/core@^7.14.0", "@babel/core@^7.15.5", "@babel/core@^7.21.8": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz#d67d9747ecf26ee7ecd3ebae1ee22225fe902a89" - integrity sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg== + version "7.21.8" + resolved "https://registry.npmjs.org/@babel/core/-/core-7.21.8.tgz#2a8c7f0f53d60100ba4c32470ba0281c92aa9aa4" + integrity sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helpers" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" + "@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" @@ -101,77 +101,77 @@ semver "^6.3.0" "@babel/eslint-parser@^7.15.4": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.5.tgz#fa032503b9e2d188e25b1b95d29e8b8431042d78" - integrity sha512-C69RWYNYtrgIRE5CmTd77ZiLDXqgBipahJc/jHP3sLcAGj6AJzxNIuKNpVnICqbyK7X3pFUfEvL++rvtbQpZkQ== + version "7.21.8" + resolved "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.21.8.tgz#59fb6fc4f3b017ab86987c076226ceef7b2b2ef2" + integrity sha512-HLhI+2q+BP3sf78mFUZNCGc10KEmoUqtUT1OCdMZsN+qr4qFeLUod62/zAnF3jNQstwyasDkZnVXwfK2Bml7MQ== dependencies: "@nicolo-ribaudo/eslint-scope-5-internals" "5.1.1-v1" eslint-visitor-keys "^2.1.0" semver "^6.3.0" -"@babel/generator@^7.12.5", "@babel/generator@^7.14.0", "@babel/generator@^7.15.4", "@babel/generator@^7.16.8", "@babel/generator@^7.22.5", "@babel/generator@^7.7.2": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.22.5.tgz#1e7bf768688acfb05cf30b2369ef855e82d984f7" - integrity sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA== +"@babel/generator@^7.12.5", "@babel/generator@^7.14.0", "@babel/generator@^7.15.4", "@babel/generator@^7.16.8", "@babel/generator@^7.21.5", "@babel/generator@^7.7.2": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/generator/-/generator-7.21.5.tgz#c0c0e5449504c7b7de8236d99338c3e2a340745f" + integrity sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.21.5" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" -"@babel/helper-annotate-as-pure@^7.18.6", "@babel/helper-annotate-as-pure@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882" - integrity sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg== +"@babel/helper-annotate-as-pure@^7.16.0", "@babel/helper-annotate-as-pure@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" + integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.18.6" -"@babel/helper-builder-binary-assignment-operator-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.5.tgz#a3f4758efdd0190d8927fcffd261755937c71878" - integrity sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw== +"@babel/helper-builder-binary-assignment-operator-visitor@^7.18.6": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.21.5.tgz#817f73b6c59726ab39f6ba18c234268a519e5abb" + integrity sha512-uNrjKztPLkUk7bpCNC0jEKDJzzkvel/W+HguzbN8krA+LPfC1CEobJEvAvGka2A/M+ViOqXdcRL0GqPUJSjx9g== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.21.5" -"@babel/helper-compilation-targets@^7.12.16", "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.5.tgz#fc7319fc54c5e2fa14b2909cf3c5fd3046813e02" - integrity sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw== +"@babel/helper-compilation-targets@^7.12.16", "@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.7", "@babel/helper-compilation-targets@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.21.5.tgz#631e6cc784c7b660417421349aac304c94115366" + integrity sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" + "@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" -"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.5.tgz#2192a1970ece4685fbff85b48da2c32fcb130b7c" - integrity sha512-xkb58MyOYIslxu3gKmVXmjTtUPvBU4odYzbiIQbWwLKIHCsx6UGZGX6F1IznMFVnDdirseUZopzN+ZRt8Xb33Q== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.21.0": + version "7.21.8" + resolved "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.21.8.tgz#205b26330258625ef8869672ebca1e0dee5a0f02" + integrity sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-member-expression-to-functions" "^7.21.5" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-replace-supers" "^7.21.5" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/helper-split-export-declaration" "^7.18.6" semver "^6.3.0" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.5.tgz#bb2bf0debfe39b831986a4efbf4066586819c6e4" - integrity sha512-1VpEFOIbMRaXyDeUwUfmTIxExLwQ+zkW+Bh5zXpApA3oQedBx9v/updixWxnx/bZpKw7u8VxWjb/qWpIcmPq8A== +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": + version "7.21.8" + resolved "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.21.8.tgz#a7886f61c2e29e21fd4aaeaf1e473deba6b571dc" + integrity sha512-zGuSdedkFtsFHGbexAvNuipg1hbtitDLo2XE8/uf6Y9sOQV1xsYX/2pNbtedp/X0eU1pIt+kGvaqHCowkRbS5g== dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" + "@babel/helper-annotate-as-pure" "^7.18.6" regexpu-core "^5.3.1" semver "^6.3.0" -"@babel/helper-define-polyfill-provider@^0.4.0": - version "0.4.0" - resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.0.tgz#487053f103110f25b9755c5980e031e93ced24d8" - integrity sha512-RnanLx5ETe6aybRi1cO/edaRH+bNYWaryCEmjDDYyNr4wnSzyOp8T0dWipmqVHKEY3AbVKUom50AKSlj1zmKbg== +"@babel/helper-define-polyfill-provider@^0.3.3": + version "0.3.3" + resolved "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz#8612e55be5d51f0cd1f36b4a5a83924e89884b7a" + integrity sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww== dependencies: "@babel/helper-compilation-targets" "^7.17.7" "@babel/helper-plugin-utils" "^7.16.7" @@ -180,179 +180,189 @@ resolve "^1.14.2" semver "^6.1.2" -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== +"@babel/helper-environment-visitor@^7.18.9", "@babel/helper-environment-visitor@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.21.5.tgz#c769afefd41d171836f7cb63e295bedf689d48ba" + integrity sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== +"@babel/helper-function-name@^7.18.9", "@babel/helper-function-name@^7.19.0", "@babel/helper-function-name@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.21.0.tgz#d552829b10ea9f120969304023cd0645fa00b1b4" + integrity sha512-HfK1aMRanKHpxemaY2gqBmL04iAPOPRj7DxtNbiDOrJK+gdwkiNRVpCpUJYbUT+aZyemKN8brqTOxzCaG6ExRg== dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" + "@babel/template" "^7.20.7" + "@babel/types" "^7.21.0" -"@babel/helper-hoist-variables@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" - integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== +"@babel/helper-hoist-variables@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" + integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.18.6" -"@babel/helper-member-expression-to-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.22.5.tgz#0a7c56117cad3372fbf8d2fb4bf8f8d64a1e76b2" - integrity sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ== +"@babel/helper-member-expression-to-functions@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.21.5.tgz#3b1a009af932e586af77c1030fba9ee0bde396c0" + integrity sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.21.5" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.21.4", "@babel/helper-module-imports@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.5.tgz#1a8f4c9f4027d23f520bd76b364d44434a72660c" - integrity sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg== +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.0.0-beta.49", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.16.0", "@babel/helper-module-imports@^7.18.6", "@babel/helper-module-imports@^7.21.4": + version "7.21.4" + resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.21.4.tgz#ac88b2f76093637489e718a90cec6cf8a9b029af" + integrity sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.21.4" -"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.22.5.tgz#0f65daa0716961b6e96b164034e737f60a80d2ef" - integrity sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw== +"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.20.11", "@babel/helper-module-transforms@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.21.5.tgz#d937c82e9af68d31ab49039136a222b17ac0b420" + integrity sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-optimise-call-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e" - integrity sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw== + "@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-optimise-call-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz#9369aa943ee7da47edab2cb4e838acf09d290ffe" + integrity sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA== dependencies: - "@babel/types" "^7.22.5" + "@babel/types" "^7.18.6" "@babel/helper-plugin-utils@7.10.4": version "7.10.4" resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375" integrity sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg== -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.22.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz#dd7ee3735e8a313b9f7b05a773d892e88e6d7295" - integrity sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg== - -"@babel/helper-remap-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.5.tgz#14a38141a7bf2165ad38da61d61cf27b43015da2" - integrity sha512-cU0Sq1Rf4Z55fgz7haOakIyM7+x/uCFwXpLPaeRzfoUtAEAuUZjZvFPjL/rk5rW693dIgn2hng1W7xbT7lWT4g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-wrap-function" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-replace-supers@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.5.tgz#71bc5fb348856dea9fdc4eafd7e2e49f585145dc" - integrity sha512-aLdNM5I3kdI/V9xGNyKSF3X/gTyMUBohTZ+/3QdQKAA9vxIiy12E+8E2HoOP1/DjeqU+g6as35QHJNMDDYpuCg== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-member-expression-to-functions" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helper-simple-access@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" - integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-skip-transparent-expression-wrappers@^7.20.0", "@babel/helper-skip-transparent-expression-wrappers@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz#007f15240b5751c537c40e77abb4e89eeaaa8847" - integrity sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-split-export-declaration@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.5.tgz#88cf11050edb95ed08d596f7a044462189127a08" - integrity sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ== - dependencies: - "@babel/types" "^7.22.5" - -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== - -"@babel/helper-validator-identifier@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.5.tgz#9544ef6a33999343c8740fa51350f30eeaaaf193" - integrity sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ== - -"@babel/helper-validator-option@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.5.tgz#de52000a15a177413c8234fa3a8af4ee8102d0ac" - integrity sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw== - -"@babel/helper-wrap-function@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.5.tgz#44d205af19ed8d872b4eefb0d2fa65f45eb34f06" - integrity sha512-bYqLIBSEshYcYQyfks8ewYA8S30yaGSeRslcvKMvoUk6HHPySbxHq9YRi6ghhzEU+yhQv9bP/jXnygkStOcqZw== - dependencies: - "@babel/helper-function-name" "^7.22.5" - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/helpers@^7.12.5", "@babel/helpers@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.22.5.tgz#74bb4373eb390d1ceed74a15ef97767e63120820" - integrity sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q== - dependencies: - "@babel/template" "^7.22.5" - "@babel/traverse" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/highlight@^7.10.4", "@babel/highlight@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.5.tgz#aa6c05c5407a67ebce408162b7ede789b4d22031" - integrity sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw== - dependencies: - "@babel/helper-validator-identifier" "^7.22.5" +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.21.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.21.5.tgz#345f2377d05a720a4e5ecfa39cbf4474a4daed56" + integrity sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== + +"@babel/helper-remap-async-to-generator@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz#997458a0e3357080e54e1d79ec347f8a8cd28519" + integrity sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-wrap-function" "^7.18.9" + "@babel/types" "^7.18.9" + +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.20.7", "@babel/helper-replace-supers@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.21.5.tgz#a6ad005ba1c7d9bc2973dfde05a1bba7065dde3c" + integrity sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg== + dependencies: + "@babel/helper-environment-visitor" "^7.21.5" + "@babel/helper-member-expression-to-functions" "^7.21.5" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + +"@babel/helper-simple-access@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.21.5.tgz#d697a7971a5c39eac32c7e63c0921c06c8a249ee" + integrity sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== + dependencies: + "@babel/types" "^7.21.5" + +"@babel/helper-skip-transparent-expression-wrappers@^7.20.0": + version "7.20.0" + resolved "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== + dependencies: + "@babel/types" "^7.20.0" + +"@babel/helper-split-export-declaration@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" + integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== + dependencies: + "@babel/types" "^7.18.6" + +"@babel/helper-string-parser@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.21.5.tgz#2b3eea65443c6bdc31c22d037c65f6d323b6b2bd" + integrity sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== + +"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": + version "7.19.1" + resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" + integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== + +"@babel/helper-validator-option@^7.18.6", "@babel/helper-validator-option@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.21.0.tgz#8224c7e13ace4bafdc4004da2cf064ef42673180" + integrity sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ== + +"@babel/helper-wrap-function@^7.18.9": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" + integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== + dependencies: + "@babel/helper-function-name" "^7.19.0" + "@babel/template" "^7.18.10" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" + +"@babel/helpers@^7.12.5", "@babel/helpers@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/helpers/-/helpers-7.21.5.tgz#5bac66e084d7a4d2d9696bdf0175a93f7fb63c08" + integrity sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== + dependencies: + "@babel/template" "^7.20.7" + "@babel/traverse" "^7.21.5" + "@babel/types" "^7.21.5" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" + integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== + dependencies: + "@babel/helper-validator-identifier" "^7.18.6" chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.12.7", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.15.5", "@babel/parser@^7.16.8", "@babel/parser@^7.20.7", "@babel/parser@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.22.5.tgz#721fd042f3ce1896238cf1b341c77eb7dee7dbea" - integrity sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q== +"@babel/parser@^7.1.0", "@babel/parser@^7.12.7", "@babel/parser@^7.14.0", "@babel/parser@^7.14.7", "@babel/parser@^7.15.5", "@babel/parser@^7.16.8", "@babel/parser@^7.20.7", "@babel/parser@^7.21.5", "@babel/parser@^7.21.8": + version "7.21.8" + resolved "https://registry.npmjs.org/@babel/parser/-/parser-7.21.8.tgz#642af7d0333eab9c0ad70b14ac5e76dbde7bfdf8" + integrity sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.5.tgz#87245a21cd69a73b0b81bcda98d443d6df08f05e" - integrity sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz#da5b8f9a580acdfbe53494dba45ea389fb09a4d2" + integrity sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.22.5.tgz#fef09f9499b1f1c930da8a0c419db42167d792ca" - integrity sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g== +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz#d9c85589258539a22a901033853101a6198d4ef1" + integrity sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" + "@babel/plugin-proposal-optional-chaining" "^7.20.7" -"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.12.13", "@babel/plugin-proposal-class-properties@^7.14.0": +"@babel/plugin-proposal-async-generator-functions@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz#bfb7276d2d573cb67ba379984a2334e262ba5326" + integrity sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA== + dependencies: + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" + "@babel/plugin-syntax-async-generators" "^7.8.4" + +"@babel/plugin-proposal-class-properties@^7.0.0", "@babel/plugin-proposal-class-properties@^7.12.13", "@babel/plugin-proposal-class-properties@^7.14.0", "@babel/plugin-proposal-class-properties@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz#b110f59741895f7ec21a6fff696ec46265c446a3" integrity sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ== @@ -360,18 +370,59 @@ "@babel/helper-create-class-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" +"@babel/plugin-proposal-class-static-block@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.21.0.tgz#77bdd66fb7b605f3a61302d224bdfacf5547977d" + integrity sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-class-static-block" "^7.14.5" + "@babel/plugin-proposal-decorators@^7.12.13": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.22.5.tgz#dc8cdda048e5aea947efda920e030199806b868d" - integrity sha512-h8hlezQ4dl6ixodgXkH8lUfcD7x+WAuIqPUjwGoItynrXOAv4a4Tci1zA/qjzQjjcl0v3QpLdc2LM6ZACQuY7A== + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.21.0.tgz#70e0c89fdcd7465c97593edb8f628ba6e4199d63" + integrity sha512-MfgX49uRrFUTL/HvWtmx3zmpyzMMr4MTj3d527MLlr/4RTT9G/ytFFP7qet2uM2Ve03b+BkpWUpK+lRXnQ+v9w== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/plugin-syntax-decorators" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-split-export-declaration" "^7.18.6" + "@babel/plugin-syntax-decorators" "^7.21.0" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5": +"@babel/plugin-proposal-dynamic-import@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz#72bcf8d408799f547d759298c3c27c7e7faa4d94" + integrity sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-dynamic-import" "^7.8.3" + +"@babel/plugin-proposal-export-namespace-from@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz#5f7313ab348cdb19d590145f9247540e94761203" + integrity sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA== + dependencies: + "@babel/helper-plugin-utils" "^7.18.9" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz#7e8788c1811c393aff762817e7dbf1ebd0c05f0b" + integrity sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-json-strings" "^7.8.3" + +"@babel/plugin-proposal-logical-assignment-operators@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz#dfbcaa8f7b4d37b51e8bfb46d94a5aea2bb89d83" + integrity sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug== + dependencies: + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.5", "@babel/plugin-proposal-nullish-coalescing-operator@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz#fdd940a99a740e577d6c753ab6fbb43fdb9467e1" integrity sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA== @@ -379,7 +430,7 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.14.5": +"@babel/plugin-proposal-numeric-separator@^7.14.5", "@babel/plugin-proposal-numeric-separator@^7.18.6": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz#899b14fbafe87f053d2c5ff05b36029c62e13c75" integrity sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q== @@ -396,7 +447,7 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-transform-parameters" "^7.12.1" -"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.14.7": +"@babel/plugin-proposal-object-rest-spread@^7.0.0", "@babel/plugin-proposal-object-rest-spread@^7.14.7", "@babel/plugin-proposal-object-rest-spread@^7.20.7": version "7.20.7" resolved "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz#aa662940ef425779c75534a5c41e9d936edc390a" integrity sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg== @@ -407,7 +458,15 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.3" "@babel/plugin-transform-parameters" "^7.20.7" -"@babel/plugin-proposal-optional-chaining@^7.14.5": +"@babel/plugin-proposal-optional-catch-binding@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz#f9400d0e6a3ea93ba9ef70b09e72dd6da638a2cb" + integrity sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw== + dependencies: + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + +"@babel/plugin-proposal-optional-chaining@^7.14.5", "@babel/plugin-proposal-optional-chaining@^7.20.7", "@babel/plugin-proposal-optional-chaining@^7.21.0": version "7.21.0" resolved "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz#886f5c8978deb7d30f678b2e24346b287234d3ea" integrity sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA== @@ -416,12 +475,25 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": - version "7.21.0-placeholder-for-preset-env.2" - resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz#7844f9289546efa9febac2de4cfe358a050bd703" - integrity sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w== +"@babel/plugin-proposal-private-methods@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz#5209de7d213457548a98436fa2882f52f4be6bea" + integrity sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" + +"@babel/plugin-proposal-private-property-in-object@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0.tgz#19496bd9883dd83c23c7d7fc45dcd9ad02dfa1dc" + integrity sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw== + dependencies: + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": +"@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": version "7.18.6" resolved "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz#af613d2cd5e643643b65cded64207b15c85cb78e" integrity sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w== @@ -457,12 +529,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-decorators@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.5.tgz#329fe2907c73de184033775637dbbc507f09116a" - integrity sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA== +"@babel/plugin-syntax-decorators@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.21.0.tgz#d2b3f31c3e86fa86e16bb540b7660c55bd7d0e78" + integrity sha512-tIoPpGBR8UuM4++ccWN3gifhVvQu7ZizuR1fklhRJrd5ewgbkUS+0KVFeWWxELtn18NTLoW32XV7zyOgIAiz+w== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-dynamic-import@^7.8.3": version "7.8.3" @@ -478,26 +550,19 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.22.5.tgz#163b820b9e7696ce134df3ee716d9c0c98035859" - integrity sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ== +"@babel/plugin-syntax-flow@^7.0.0", "@babel/plugin-syntax-flow@^7.18.6": + version "7.21.4" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.21.4.tgz#3e37fca4f06d93567c1cd9b75156422e90a67107" + integrity sha512-l9xd3N+XG4fZRxEP3vXdK6RW7vN1Uf5dxzRC/09wV86wqZ/YYQooBIGNsiRdfNR3/q2/5pPzV4B54J/9ctX5jw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-import-assertions@^7.20.0", "@babel/plugin-syntax-import-assertions@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.22.5.tgz#07d252e2aa0bc6125567f742cd58619cb14dce98" - integrity sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-syntax-import-attributes@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.22.5.tgz#ab840248d834410b829f569f5262b9e517555ecb" - integrity sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg== +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-import-meta@^7.10.4", "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" @@ -520,12 +585,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.12.13", "@babel/plugin-syntax-jsx@^7.2.0", "@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.7.2": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== +"@babel/plugin-syntax-jsx@^7.0.0", "@babel/plugin-syntax-jsx@^7.12.13", "@babel/plugin-syntax-jsx@^7.2.0", "@babel/plugin-syntax-jsx@^7.21.4", "@babel/plugin-syntax-jsx@^7.7.2": + version "7.21.4" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.21.4.tgz#f264ed7bf40ffc9ec239edabc17a50c4f5b6fea2" + integrity sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.10.4" @@ -583,491 +648,359 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.22.5", "@babel/plugin-syntax-typescript@^7.7.2": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz#aac8d383b062c5072c647a31ef990c1d0af90272" - integrity sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-syntax-unicode-sets-regex@^7.18.6": - version "7.18.6" - resolved "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz#d49a3b3e6b52e5be6740022317580234a6a47357" - integrity sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" - -"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.22.5.tgz#e5ba566d0c58a5b2ba2a8b795450641950b71958" - integrity sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw== +"@babel/plugin-syntax-typescript@^7.20.0", "@babel/plugin-syntax-typescript@^7.7.2": + version "7.21.4" + resolved "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.21.4.tgz#2751948e9b7c6d771a8efa59340c15d4a2891ff8" + integrity sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-async-generator-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.22.5.tgz#7336356d23380eda9a56314974f053a020dab0c3" - integrity sha512-gGOEvFzm3fWoyD5uZq7vVTD57pPJ3PczPUD/xCFGjzBpUosnklmXyKnGQbbbGs1NPNPskFex0j93yKbHt0cHyg== - dependencies: - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" - "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-async-to-generator@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.22.5.tgz#c7a85f44e46f8952f6d27fe57c2ed3cc084c3775" - integrity sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ== +"@babel/plugin-transform-arrow-functions@^7.0.0", "@babel/plugin-transform-arrow-functions@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.21.5.tgz#9bb42a53de447936a57ba256fbf537fc312b6929" + integrity sha512-wb1mhwGOCaXHDTcsRYMKF9e5bbMgqwxtqa2Y1ifH96dXJPwbuLX9qHy3clhrxVqgMz7nyNXs8VkxdH8UBcjKqA== dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-remap-async-to-generator" "^7.22.5" + "@babel/helper-plugin-utils" "^7.21.5" -"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.22.5.tgz#27978075bfaeb9fa586d3cb63a3d30c1de580024" - integrity sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA== +"@babel/plugin-transform-async-to-generator@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz#dfee18623c8cb31deb796aa3ca84dda9cea94354" + integrity sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-module-imports" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-remap-async-to-generator" "^7.18.9" -"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.22.5.tgz#8bfc793b3a4b2742c0983fadc1480d843ecea31b" - integrity sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg== +"@babel/plugin-transform-block-scoped-functions@^7.0.0", "@babel/plugin-transform-block-scoped-functions@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz#9187bf4ba302635b9d70d986ad70f038726216a8" + integrity sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-class-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.22.5.tgz#97a56e31ad8c9dc06a0b3710ce7803d5a48cca77" - integrity sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ== +"@babel/plugin-transform-block-scoping@^7.0.0", "@babel/plugin-transform-block-scoping@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.21.0.tgz#e737b91037e5186ee16b76e7ae093358a5634f02" + integrity sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-class-static-block@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.22.5.tgz#3e40c46f048403472d6f4183116d5e46b1bff5ba" - integrity sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA== +"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.15.4", "@babel/plugin-transform-classes@^7.21.0": + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.21.0.tgz#f469d0b07a4c5a7dbb21afad9e27e57b47031665" + integrity sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-class-static-block" "^7.14.5" - -"@babel/plugin-transform-classes@^7.0.0", "@babel/plugin-transform-classes@^7.15.4", "@babel/plugin-transform-classes@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.22.5.tgz#635d4e98da741fad814984639f4c0149eb0135e1" - integrity sha512-2edQhLfibpWpsVBx2n/GKOz6JdGQvLruZQfGr9l1qes2KQaWswjBzhQF7UDUZMNaMMQeYnQzxwOMPsbYF7wqPQ== - dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-compilation-targets" "^7.20.7" + "@babel/helper-environment-visitor" "^7.18.9" + "@babel/helper-function-name" "^7.21.0" + "@babel/helper-optimise-call-expression" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.20.7" + "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.22.5.tgz#cd1e994bf9f316bd1c2dafcd02063ec261bb3869" - integrity sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg== +"@babel/plugin-transform-computed-properties@^7.0.0", "@babel/plugin-transform-computed-properties@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.21.5.tgz#3a2d8bb771cd2ef1cd736435f6552fe502e11b44" + integrity sha512-TR653Ki3pAwxBxUe8srfF3e4Pe3FTA46uaNHYyQwIoM4oWKSoOZiDNyHJ0oIoDIUPSRQbQG7jzgVBX3FPVne1Q== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/template" "^7.20.7" -"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.22.5.tgz#d3aca7438f6c26c78cdd0b0ba920a336001b27cc" - integrity sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ== +"@babel/plugin-transform-destructuring@^7.0.0", "@babel/plugin-transform-destructuring@^7.21.3": + version "7.21.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.21.3.tgz#73b46d0fd11cd6ef57dea8a381b1215f4959d401" + integrity sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-dotall-regex@^7.22.5", "@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.22.5.tgz#dbb4f0e45766eb544e193fb00e65a1dd3b2a4165" - integrity sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-duplicate-keys@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.22.5.tgz#b6e6428d9416f5f0bba19c70d1e6e7e0b88ab285" - integrity sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-dynamic-import@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.22.5.tgz#d6908a8916a810468c4edff73b5b75bda6ad393e" - integrity sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ== +"@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz#b286b3e7aae6c7b861e45bed0a2fafd6b1a4fef8" + integrity sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-dynamic-import" "^7.8.3" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-exponentiation-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.22.5.tgz#402432ad544a1f9a480da865fda26be653e48f6a" - integrity sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g== +"@babel/plugin-transform-duplicate-keys@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz#687f15ee3cdad6d85191eb2a372c4528eaa0ae0e" + integrity sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw== dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-export-namespace-from@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.22.5.tgz#57c41cb1d0613d22f548fddd8b288eedb9973a5b" - integrity sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg== +"@babel/plugin-transform-exponentiation-operator@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz#421c705f4521888c65e91fdd1af951bfefd4dacd" + integrity sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-flow-strip-types@^7.0.0": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.22.5.tgz#0bb17110c7bf5b35a60754b2f00c58302381dee2" - integrity sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-flow" "^7.22.5" - -"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.22.5.tgz#ab1b8a200a8f990137aff9a084f8de4099ab173f" - integrity sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.22.5.tgz#935189af68b01898e0d6d99658db6b164205c143" - integrity sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg== - dependencies: - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-json-strings@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.22.5.tgz#14b64352fdf7e1f737eed68de1a1468bd2a77ec0" - integrity sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-json-strings" "^7.8.3" - -"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.22.5.tgz#e9341f4b5a167952576e23db8d435849b1dd7920" - integrity sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-logical-assignment-operators@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.22.5.tgz#66ae5f068fd5a9a5dc570df16f56c2a8462a9d6c" - integrity sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.22.5.tgz#4fcc9050eded981a468347dd374539ed3e058def" - integrity sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-amd@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.22.5.tgz#4e045f55dcf98afd00f85691a68fc0780704f526" - integrity sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.22.5.tgz#7d9875908d19b8c0536085af7b053fd5bd651bfa" - integrity sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA== - dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-simple-access" "^7.22.5" - -"@babel/plugin-transform-modules-systemjs@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.22.5.tgz#18c31410b5e579a0092638f95c896c2a98a5d496" - integrity sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ== + version "7.21.0" + resolved "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.21.0.tgz#6aeca0adcb81dc627c8986e770bfaa4d9812aff5" + integrity sha512-FlFA2Mj87a6sDkW4gfGrQQqwY/dLlBAyJa2dJEZ+FHXUVHBflO2wyKvg+OOEzXfrKYIa4HWl0mgmbCzt0cMb7w== dependencies: - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-flow" "^7.18.6" -"@babel/plugin-transform-modules-umd@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.22.5.tgz#4694ae40a87b1745e3775b6a7fe96400315d4f98" - integrity sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ== +"@babel/plugin-transform-for-of@^7.0.0", "@babel/plugin-transform-for-of@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.21.5.tgz#e890032b535f5a2e237a18535f56a9fdaa7b83fc" + integrity sha512-nYWpjKW/7j/I/mZkGVgHJXh4bA1sfdFnJoOXwJuj4m3Q2EraO/8ZyrkCau9P5tbHQk01RMSt6KYLCsW7730SXQ== dependencies: - "@babel/helper-module-transforms" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.21.5" -"@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz#67fe18ee8ce02d57c855185e27e3dc959b2e991f" - integrity sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ== +"@babel/plugin-transform-function-name@^7.0.0", "@babel/plugin-transform-function-name@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz#cc354f8234e62968946c61a46d6365440fc764e0" + integrity sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-compilation-targets" "^7.18.9" + "@babel/helper-function-name" "^7.18.9" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-new-target@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.22.5.tgz#1b248acea54ce44ea06dfd37247ba089fcf9758d" - integrity sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw== +"@babel/plugin-transform-literals@^7.0.0", "@babel/plugin-transform-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz#72796fdbef80e56fba3c6a699d54f0de557444bc" + integrity sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.22.5.tgz#f8872c65776e0b552e0849d7596cddd416c3e381" - integrity sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA== +"@babel/plugin-transform-member-expression-literals@^7.0.0", "@babel/plugin-transform-member-expression-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz#ac9fdc1a118620ac49b7e7a5d2dc177a1bfee88e" + integrity sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-numeric-separator@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.22.5.tgz#57226a2ed9e512b9b446517ab6fa2d17abb83f58" - integrity sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g== +"@babel/plugin-transform-modules-amd@^7.20.11": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz#3daccca8e4cc309f03c3a0c4b41dc4b26f55214a" + integrity sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-object-rest-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.22.5.tgz#9686dc3447df4753b0b2a2fae7e8bc33cdc1f2e1" - integrity sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ== +"@babel/plugin-transform-modules-commonjs@^7.0.0", "@babel/plugin-transform-modules-commonjs@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.21.5.tgz#d69fb947eed51af91de82e4708f676864e5e47bc" + integrity sha512-OVryBEgKUbtqMoB7eG2rs6UFexJi6Zj6FDXx+esBLPTCxCNxAY9o+8Di7IsUGJ+AVhp5ncK0fxWUBd0/1gPhrQ== dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.22.5" + "@babel/helper-module-transforms" "^7.21.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-simple-access" "^7.21.5" -"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.22.5.tgz#794a8d2fcb5d0835af722173c1a9d704f44e218c" - integrity sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw== +"@babel/plugin-transform-modules-systemjs@^7.20.11": + version "7.20.11" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz#467ec6bba6b6a50634eea61c9c232654d8a4696e" + integrity sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.5" + "@babel/helper-hoist-variables" "^7.18.6" + "@babel/helper-module-transforms" "^7.20.11" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-validator-identifier" "^7.19.1" -"@babel/plugin-transform-optional-catch-binding@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.22.5.tgz#842080be3076703be0eaf32ead6ac8174edee333" - integrity sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg== +"@babel/plugin-transform-modules-umd@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz#81d3832d6034b75b54e62821ba58f28ed0aab4b9" + integrity sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/helper-module-transforms" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-optional-chaining@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.22.5.tgz#1003762b9c14295501beb41be72426736bedd1e0" - integrity sha512-AconbMKOMkyG+xCng2JogMCDcqW8wedQAqpVIL4cOSescZ7+iW8utC6YDZLMCSUIReEA733gzRSaOSXMAt/4WQ== +"@babel/plugin-transform-named-capturing-groups-regex@^7.20.5": + version "7.20.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" + integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/helper-create-regexp-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.22.5.tgz#c3542dd3c39b42c8069936e48717a8d179d63a18" - integrity sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg== +"@babel/plugin-transform-new-target@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz#d128f376ae200477f37c4ddfcc722a8a1b3246a8" + integrity sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-private-methods@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.22.5.tgz#21c8af791f76674420a147ae62e9935d790f8722" - integrity sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA== +"@babel/plugin-transform-object-super@^7.0.0", "@babel/plugin-transform-object-super@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz#fb3c6ccdd15939b6ff7939944b51971ddc35912c" + integrity sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-replace-supers" "^7.18.6" -"@babel/plugin-transform-private-property-in-object@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.22.5.tgz#07a77f28cbb251546a43d175a1dda4cf3ef83e32" - integrity sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ== +"@babel/plugin-transform-parameters@^7.0.0", "@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.20.7", "@babel/plugin-transform-parameters@^7.21.3": + version "7.21.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.21.3.tgz#18fc4e797cf6d6d972cb8c411dbe8a809fa157db" + integrity sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-private-property-in-object" "^7.14.5" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.22.5.tgz#b5ddabd73a4f7f26cd0e20f5db48290b88732766" - integrity sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ== +"@babel/plugin-transform-property-literals@^7.0.0", "@babel/plugin-transform-property-literals@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz#e22498903a483448e94e032e9bbb9c5ccbfc93a3" + integrity sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.22.5.tgz#3c4326f9fce31c7968d6cb9debcaf32d9e279a2b" - integrity sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw== +"@babel/plugin-transform-react-display-name@^7.0.0", "@babel/plugin-transform-react-display-name@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz#8b1125f919ef36ebdfff061d664e266c666b9415" + integrity sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-react-jsx-development@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz#e716b6edbef972a92165cd69d92f1255f7e73e87" - integrity sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A== +"@babel/plugin-transform-react-jsx-development@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz#dbe5c972811e49c7405b630e4d0d2e1380c0ddc5" + integrity sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA== dependencies: - "@babel/plugin-transform-react-jsx" "^7.22.5" + "@babel/plugin-transform-react-jsx" "^7.18.6" -"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.5.tgz#932c291eb6dd1153359e2a90cb5e557dcf068416" - integrity sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA== +"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.18.6": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.21.5.tgz#bd98f3b429688243e4fa131fe1cbb2ef31ce6f38" + integrity sha512-ELdlq61FpoEkHO6gFRpfj0kUgSwQTGoaEU8eMRoS8Dv3v6e7BjEAj5WMtIBRdHUeAioMhKP5HyxNzNnP+heKbA== dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/types" "^7.22.5" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-module-imports" "^7.21.4" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/plugin-syntax-jsx" "^7.21.4" + "@babel/types" "^7.21.5" -"@babel/plugin-transform-react-pure-annotations@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.22.5.tgz#1f58363eef6626d6fa517b95ac66fe94685e32c0" - integrity sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA== +"@babel/plugin-transform-react-pure-annotations@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz#561af267f19f3e5d59291f9950fd7b9663d0d844" + integrity sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ== dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-regenerator@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.22.5.tgz#cd8a68b228a5f75fa01420e8cc2fc400f0fc32aa" - integrity sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw== +"@babel/plugin-transform-regenerator@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.21.5.tgz#576c62f9923f94bcb1c855adc53561fd7913724e" + integrity sha512-ZoYBKDb6LyMi5yCsByQ5jmXsHAQDDYeexT1Szvlmui+lADvfSecr5Dxd/PkrTC3pAD182Fcju1VQkB4oCp9M+w== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.21.5" regenerator-transform "^0.15.1" -"@babel/plugin-transform-reserved-words@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.22.5.tgz#832cd35b81c287c4bcd09ce03e22199641f964fb" - integrity sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA== +"@babel/plugin-transform-reserved-words@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz#b1abd8ebf8edaa5f7fe6bbb8d2133d23b6a6f76a" + integrity sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-runtime@^7.12.15", "@babel/plugin-transform-runtime@^7.15.0", "@babel/plugin-transform-runtime@^7.21.4": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.22.5.tgz#ca975fb5e260044473c8142e1b18b567d33c2a3b" - integrity sha512-bg4Wxd1FWeFx3daHFTWk1pkSWK/AyQuiyAoeZAOkAOUBjnZPH6KT7eMxouV47tQ6hl6ax2zyAWBdWZXbrvXlaw== - dependencies: - "@babel/helper-module-imports" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.3" - babel-plugin-polyfill-corejs3 "^0.8.1" - babel-plugin-polyfill-regenerator "^0.5.0" - semver "^6.3.0" - -"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.22.5.tgz#6e277654be82b5559fc4b9f58088507c24f0c624" - integrity sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA== + version "7.21.4" + resolved "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.21.4.tgz#2e1da21ca597a7d01fc96b699b21d8d2023191aa" + integrity sha512-1J4dhrw1h1PqnNNpzwxQ2UBymJUF8KuPjAAnlLwZcGhHAIqUigFW7cdK6GHoB64ubY4qXQNYknoUeks4Wz7CUA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - -"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.14.6", "@babel/plugin-transform-spread@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.22.5.tgz#6487fd29f229c95e284ba6c98d65eafb893fea6b" - integrity sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg== - dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" + "@babel/helper-module-imports" "^7.21.4" + "@babel/helper-plugin-utils" "^7.20.2" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + semver "^6.3.0" -"@babel/plugin-transform-sticky-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.22.5.tgz#295aba1595bfc8197abd02eae5fc288c0deb26aa" - integrity sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw== +"@babel/plugin-transform-shorthand-properties@^7.0.0", "@babel/plugin-transform-shorthand-properties@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz#6d6df7983d67b195289be24909e3f12a8f664dc9" + integrity sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.22.5.tgz#8f38cf291e5f7a8e60e9f733193f0bcc10909bff" - integrity sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA== +"@babel/plugin-transform-spread@^7.0.0", "@babel/plugin-transform-spread@^7.14.6", "@babel/plugin-transform-spread@^7.20.7": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz#c2d83e0b99d3bf83e07b11995ee24bf7ca09401e" + integrity sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-skip-transparent-expression-wrappers" "^7.20.0" -"@babel/plugin-transform-typeof-symbol@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.22.5.tgz#5e2ba478da4b603af8673ff7c54f75a97b716b34" - integrity sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA== +"@babel/plugin-transform-sticky-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz#c6706eb2b1524028e317720339583ad0f444adcc" + integrity sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-typescript@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.22.5.tgz#5c0f7adfc1b5f38c4dbc8f79b1f0f8074134bd7d" - integrity sha512-SMubA9S7Cb5sGSFFUlqxyClTA9zWJ8qGQrppNUm05LtFuN1ELRFNndkix4zUJrC9F+YivWwa1dHMSyo0e0N9dA== +"@babel/plugin-transform-template-literals@^7.0.0", "@babel/plugin-transform-template-literals@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz#04ec6f10acdaa81846689d63fae117dd9c243a5e" + integrity sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA== dependencies: - "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-typescript" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-unicode-escapes@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.22.5.tgz#ce0c248522b1cb22c7c992d88301a5ead70e806c" - integrity sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg== +"@babel/plugin-transform-typeof-symbol@^7.18.9": + version "7.18.9" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz#c8cea68263e45addcd6afc9091429f80925762c0" + integrity sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-unicode-property-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.22.5.tgz#098898f74d5c1e86660dc112057b2d11227f1c81" - integrity sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A== +"@babel/plugin-transform-typescript@^7.21.3": + version "7.21.3" + resolved "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.21.3.tgz#316c5be579856ea890a57ebc5116c5d064658f2b" + integrity sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-annotate-as-pure" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.21.0" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/plugin-syntax-typescript" "^7.20.0" -"@babel/plugin-transform-unicode-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.22.5.tgz#ce7e7bb3ef208c4ff67e02a22816656256d7a183" - integrity sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg== +"@babel/plugin-transform-unicode-escapes@^7.21.5": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.21.5.tgz#1e55ed6195259b0e9061d81f5ef45a9b009fb7f2" + integrity sha512-LYm/gTOwZqsYohlvFUe/8Tujz75LqqVC2w+2qPHLR+WyWHGCZPN1KBpJCJn+4Bk4gOkQy/IXKIge6az5MqwlOg== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.21.5" -"@babel/plugin-transform-unicode-sets-regex@^7.22.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.22.5.tgz#77788060e511b708ffc7d42fdfbc5b37c3004e91" - integrity sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg== +"@babel/plugin-transform-unicode-regex@^7.18.6": + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz#194317225d8c201bbae103364ffe9e2cea36cdca" + integrity sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-regexp-features-plugin" "^7.18.6" + "@babel/helper-plugin-utils" "^7.18.6" "@babel/preset-env@^7.12.16", "@babel/preset-env@^7.15.4", "@babel/preset-env@^7.21.5": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.22.5.tgz#3da66078b181f3d62512c51cf7014392c511504e" - integrity sha512-fj06hw89dpiZzGZtxn+QybifF07nNiZjZ7sazs2aVDcysAZVGjW7+7iFYxg6GLNM47R/thYfLdrXc+2f11Vi9A== - dependencies: - "@babel/compat-data" "^7.22.5" - "@babel/helper-compilation-targets" "^7.22.5" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.22.5" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.22.5" - "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.21.5.tgz#db2089d99efd2297716f018aeead815ac3decffb" + integrity sha512-wH00QnTTldTbf/IefEVyChtRdw5RJvODT/Vb4Vcxq1AZvtXj6T0YeX0cAcXhI6/BdGuiP3GcNIL4OQbI2DVNxg== + dependencies: + "@babel/compat-data" "^7.21.5" + "@babel/helper-compilation-targets" "^7.21.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-validator-option" "^7.21.0" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.20.7" + "@babel/plugin-proposal-async-generator-functions" "^7.20.7" + "@babel/plugin-proposal-class-properties" "^7.18.6" + "@babel/plugin-proposal-class-static-block" "^7.21.0" + "@babel/plugin-proposal-dynamic-import" "^7.18.6" + "@babel/plugin-proposal-export-namespace-from" "^7.18.9" + "@babel/plugin-proposal-json-strings" "^7.18.6" + "@babel/plugin-proposal-logical-assignment-operators" "^7.20.7" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" + "@babel/plugin-proposal-numeric-separator" "^7.18.6" + "@babel/plugin-proposal-object-rest-spread" "^7.20.7" + "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" + "@babel/plugin-proposal-optional-chaining" "^7.21.0" + "@babel/plugin-proposal-private-methods" "^7.18.6" + "@babel/plugin-proposal-private-property-in-object" "^7.21.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.18.6" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.22.5" - "@babel/plugin-syntax-import-attributes" "^7.22.5" + "@babel/plugin-syntax-import-assertions" "^7.20.0" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -1078,61 +1011,44 @@ "@babel/plugin-syntax-optional-chaining" "^7.8.3" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" - "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.22.5" - "@babel/plugin-transform-async-generator-functions" "^7.22.5" - "@babel/plugin-transform-async-to-generator" "^7.22.5" - "@babel/plugin-transform-block-scoped-functions" "^7.22.5" - "@babel/plugin-transform-block-scoping" "^7.22.5" - "@babel/plugin-transform-class-properties" "^7.22.5" - "@babel/plugin-transform-class-static-block" "^7.22.5" - "@babel/plugin-transform-classes" "^7.22.5" - "@babel/plugin-transform-computed-properties" "^7.22.5" - "@babel/plugin-transform-destructuring" "^7.22.5" - "@babel/plugin-transform-dotall-regex" "^7.22.5" - "@babel/plugin-transform-duplicate-keys" "^7.22.5" - "@babel/plugin-transform-dynamic-import" "^7.22.5" - "@babel/plugin-transform-exponentiation-operator" "^7.22.5" - "@babel/plugin-transform-export-namespace-from" "^7.22.5" - "@babel/plugin-transform-for-of" "^7.22.5" - "@babel/plugin-transform-function-name" "^7.22.5" - "@babel/plugin-transform-json-strings" "^7.22.5" - "@babel/plugin-transform-literals" "^7.22.5" - "@babel/plugin-transform-logical-assignment-operators" "^7.22.5" - "@babel/plugin-transform-member-expression-literals" "^7.22.5" - "@babel/plugin-transform-modules-amd" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-modules-systemjs" "^7.22.5" - "@babel/plugin-transform-modules-umd" "^7.22.5" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.22.5" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.22.5" - "@babel/plugin-transform-numeric-separator" "^7.22.5" - "@babel/plugin-transform-object-rest-spread" "^7.22.5" - "@babel/plugin-transform-object-super" "^7.22.5" - "@babel/plugin-transform-optional-catch-binding" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.22.5" - "@babel/plugin-transform-parameters" "^7.22.5" - "@babel/plugin-transform-private-methods" "^7.22.5" - "@babel/plugin-transform-private-property-in-object" "^7.22.5" - "@babel/plugin-transform-property-literals" "^7.22.5" - "@babel/plugin-transform-regenerator" "^7.22.5" - "@babel/plugin-transform-reserved-words" "^7.22.5" - "@babel/plugin-transform-shorthand-properties" "^7.22.5" - "@babel/plugin-transform-spread" "^7.22.5" - "@babel/plugin-transform-sticky-regex" "^7.22.5" - "@babel/plugin-transform-template-literals" "^7.22.5" - "@babel/plugin-transform-typeof-symbol" "^7.22.5" - "@babel/plugin-transform-unicode-escapes" "^7.22.5" - "@babel/plugin-transform-unicode-property-regex" "^7.22.5" - "@babel/plugin-transform-unicode-regex" "^7.22.5" - "@babel/plugin-transform-unicode-sets-regex" "^7.22.5" + "@babel/plugin-transform-arrow-functions" "^7.21.5" + "@babel/plugin-transform-async-to-generator" "^7.20.7" + "@babel/plugin-transform-block-scoped-functions" "^7.18.6" + "@babel/plugin-transform-block-scoping" "^7.21.0" + "@babel/plugin-transform-classes" "^7.21.0" + "@babel/plugin-transform-computed-properties" "^7.21.5" + "@babel/plugin-transform-destructuring" "^7.21.3" + "@babel/plugin-transform-dotall-regex" "^7.18.6" + "@babel/plugin-transform-duplicate-keys" "^7.18.9" + "@babel/plugin-transform-exponentiation-operator" "^7.18.6" + "@babel/plugin-transform-for-of" "^7.21.5" + "@babel/plugin-transform-function-name" "^7.18.9" + "@babel/plugin-transform-literals" "^7.18.9" + "@babel/plugin-transform-member-expression-literals" "^7.18.6" + "@babel/plugin-transform-modules-amd" "^7.20.11" + "@babel/plugin-transform-modules-commonjs" "^7.21.5" + "@babel/plugin-transform-modules-systemjs" "^7.20.11" + "@babel/plugin-transform-modules-umd" "^7.18.6" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.20.5" + "@babel/plugin-transform-new-target" "^7.18.6" + "@babel/plugin-transform-object-super" "^7.18.6" + "@babel/plugin-transform-parameters" "^7.21.3" + "@babel/plugin-transform-property-literals" "^7.18.6" + "@babel/plugin-transform-regenerator" "^7.21.5" + "@babel/plugin-transform-reserved-words" "^7.18.6" + "@babel/plugin-transform-shorthand-properties" "^7.18.6" + "@babel/plugin-transform-spread" "^7.20.7" + "@babel/plugin-transform-sticky-regex" "^7.18.6" + "@babel/plugin-transform-template-literals" "^7.18.9" + "@babel/plugin-transform-typeof-symbol" "^7.18.9" + "@babel/plugin-transform-unicode-escapes" "^7.21.5" + "@babel/plugin-transform-unicode-regex" "^7.18.6" "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.22.5" - babel-plugin-polyfill-corejs2 "^0.4.3" - babel-plugin-polyfill-corejs3 "^0.8.1" - babel-plugin-polyfill-regenerator "^0.5.0" - core-js-compat "^3.30.2" + "@babel/types" "^7.21.5" + babel-plugin-polyfill-corejs2 "^0.3.3" + babel-plugin-polyfill-corejs3 "^0.6.0" + babel-plugin-polyfill-regenerator "^0.4.1" + core-js-compat "^3.25.1" semver "^6.3.0" "@babel/preset-modules@^0.1.5": @@ -1147,27 +1063,27 @@ esutils "^2.0.2" "@babel/preset-react@^7.14.0", "@babel/preset-react@^7.18.6": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.22.5.tgz#c4d6058fbf80bccad02dd8c313a9aaa67e3c3dd6" - integrity sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ== + version "7.18.6" + resolved "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz#979f76d6277048dc19094c217b507f3ad517dd2d" + integrity sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-transform-react-display-name" "^7.22.5" - "@babel/plugin-transform-react-jsx" "^7.22.5" - "@babel/plugin-transform-react-jsx-development" "^7.22.5" - "@babel/plugin-transform-react-pure-annotations" "^7.22.5" + "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-validator-option" "^7.18.6" + "@babel/plugin-transform-react-display-name" "^7.18.6" + "@babel/plugin-transform-react-jsx" "^7.18.6" + "@babel/plugin-transform-react-jsx-development" "^7.18.6" + "@babel/plugin-transform-react-pure-annotations" "^7.18.6" "@babel/preset-typescript@^7.15.0", "@babel/preset-typescript@^7.16.7": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.22.5.tgz#16367d8b01d640e9a507577ed4ee54e0101e51c8" - integrity sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ== + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.21.5.tgz#68292c884b0e26070b4d66b202072d391358395f" + integrity sha512-iqe3sETat5EOrORXiQ6rWfoOg2y68Cs75B9wNxdPW4kixJxh7aXQE1KPdWLDniC24T/6dSnguF33W9j/ZZQcmA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.5" - "@babel/plugin-syntax-jsx" "^7.22.5" - "@babel/plugin-transform-modules-commonjs" "^7.22.5" - "@babel/plugin-transform-typescript" "^7.22.5" + "@babel/helper-plugin-utils" "^7.21.5" + "@babel/helper-validator-option" "^7.21.0" + "@babel/plugin-syntax-jsx" "^7.21.4" + "@babel/plugin-transform-modules-commonjs" "^7.21.5" + "@babel/plugin-transform-typescript" "^7.21.3" "@babel/regjsgen@^0.8.0": version "0.8.0" @@ -1175,44 +1091,44 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime@^7.0.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.15.4", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.9", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.5.tgz#8564dd588182ce0047d55d7a75e93921107b57ec" - integrity sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA== + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.21.5.tgz#8492dddda9644ae3bda3b45eabe87382caee7200" + integrity sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q== dependencies: regenerator-runtime "^0.13.11" -"@babel/template@^7.0.0", "@babel/template@^7.12.7", "@babel/template@^7.16.7", "@babel/template@^7.22.5", "@babel/template@^7.3.3": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/template/-/template-7.22.5.tgz#0c8c4d944509875849bd0344ff0050756eefc6ec" - integrity sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" - -"@babel/traverse@^7.0.0", "@babel/traverse@^7.12.9", "@babel/traverse@^7.14.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.16.8", "@babel/traverse@^7.22.5", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.2": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.22.5.tgz#44bd276690db6f4940fdb84e1cb4abd2f729ccd1" - integrity sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ== - dependencies: - "@babel/code-frame" "^7.22.5" - "@babel/generator" "^7.22.5" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" - "@babel/helper-hoist-variables" "^7.22.5" - "@babel/helper-split-export-declaration" "^7.22.5" - "@babel/parser" "^7.22.5" - "@babel/types" "^7.22.5" +"@babel/template@^7.0.0", "@babel/template@^7.12.7", "@babel/template@^7.16.7", "@babel/template@^7.18.10", "@babel/template@^7.20.7", "@babel/template@^7.3.3": + version "7.20.7" + resolved "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz#a15090c2839a83b02aa996c0b4994005841fd5a8" + integrity sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw== + dependencies: + "@babel/code-frame" "^7.18.6" + "@babel/parser" "^7.20.7" + "@babel/types" "^7.20.7" + +"@babel/traverse@^7.0.0", "@babel/traverse@^7.12.9", "@babel/traverse@^7.14.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.16.8", "@babel/traverse@^7.20.5", "@babel/traverse@^7.21.5", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.2": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/traverse/-/traverse-7.21.5.tgz#ad22361d352a5154b498299d523cf72998a4b133" + integrity sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== + 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" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.12.7", "@babel/types@^7.15.4", "@babel/types@^7.16.8", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.3.3", "@babel/types@^7.4.4": - version "7.22.5" - resolved "https://registry.npmjs.org/@babel/types/-/types-7.22.5.tgz#cd93eeaab025880a3a47ec881f4b096a5b786fbe" - integrity sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA== +"@babel/types@^7.0.0", "@babel/types@^7.0.0-beta.49", "@babel/types@^7.12.7", "@babel/types@^7.15.4", "@babel/types@^7.16.8", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.20.0", "@babel/types@^7.20.5", "@babel/types@^7.20.7", "@babel/types@^7.21.0", "@babel/types@^7.21.4", "@babel/types@^7.21.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": + version "7.21.5" + resolved "https://registry.npmjs.org/@babel/types/-/types-7.21.5.tgz#18dfbd47c39d3904d5db3d3dc2cc80bedb60e5b6" + integrity sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.5" + "@babel/helper-string-parser" "^7.21.5" + "@babel/helper-validator-identifier" "^7.19.1" to-fast-properties "^2.0.0" "@bcoe/v8-coverage@^0.2.3": @@ -1226,12 +1142,12 @@ integrity sha512-qnikpQgi30AS01aFlNQV6l8/qdZIcP76mp90ti+u4rucXHsn4afSKivQXApqxvrQG9+Ibv45STyvHizvxef/7A== "@commitlint/cli@^17.6.3": - version "17.6.5" - resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.5.tgz#3a8abd6499f9d4aeafe3bf9201338ccb868a14b9" - integrity sha512-3PQrWr/uo6lzF5k7n5QuosCYnzaxP9qGBp3jhWP0Vmsa7XA6wrl9ccPqfQyXpSbQE3zBROVO3TDqgPKe4tfmLQ== + version "17.6.3" + resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-17.6.3.tgz#a02194a2bb6efe4e681eda2addd072a8d02c9497" + integrity sha512-ItSz2fd4F+CujgIbQOfNNerDF1eFlsBGEfp9QcCb1kxTYMuKTYZzA6Nu1YRRrIaaWwe2E7awUGpIMrPoZkOG3A== dependencies: "@commitlint/format" "^17.4.4" - "@commitlint/lint" "^17.6.5" + "@commitlint/lint" "^17.6.3" "@commitlint/load" "^17.5.0" "@commitlint/read" "^17.5.1" "@commitlint/types" "^17.4.4" @@ -1242,9 +1158,9 @@ yargs "^17.0.0" "@commitlint/config-conventional@^17.6.3": - version "17.6.5" - resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.5.tgz#a8ec286e634a071329fe45dc4955032c2176aeb5" - integrity sha512-Xl9H9KLl86NZm5CYNTNF9dcz1xelE/EbvhWIWcYxG/rn3UWYWdWmmnX2q6ZduNdLFSGbOxzUpIx61j5zxbeXxg== + version "17.6.3" + resolved "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.6.3.tgz#21f5835235493e386effeaa98b898124230b1000" + integrity sha512-bLyHEjjRWqlLQWIgYFHmUPbEFMOOLXeF3QbUinDIJev/u9e769tkoTH9YPknEywiuIrAgZaVo+OfzAIsJP0fsw== dependencies: conventional-changelog-conventionalcommits "^5.0.0" @@ -1281,22 +1197,22 @@ "@commitlint/types" "^17.4.4" chalk "^4.1.0" -"@commitlint/is-ignored@^17.6.5": - version "17.6.5" - resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.5.tgz#cea24cd2031fe7d242590b91fab3352750887194" - integrity sha512-CQvAPt9gX7cuUbMrIaIMKczfWJqqr6m8IlJs0F2zYwyyMTQ87QMHIj5jJ5HhOaOkaj6dvTMVGx8Dd1I4xgUuoQ== +"@commitlint/is-ignored@^17.6.3": + version "17.6.3" + resolved "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.6.3.tgz#8e21046558a0339fbf2a33ef0ad7d5a9ae7ff6bc" + integrity sha512-LQbNdnPbxrpbcrVKR5yf51SvquqktpyZJwqXx3lUMF6+nT9PHB8xn3wLy8pi2EQv5Zwba484JnUwDE1ygVYNQA== dependencies: "@commitlint/types" "^17.4.4" semver "7.5.0" -"@commitlint/lint@^17.6.5": - version "17.6.5" - resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.5.tgz#dfa437f14430c9874d6b1a3ba8a2d44b79780c02" - integrity sha512-BSJMwkE4LWXrOsiP9KoHG+/heSDfvOL/Nd16+ojTS/DX8HZr8dNl8l3TfVr/d/9maWD8fSegRGtBtsyGuugFrw== +"@commitlint/lint@^17.6.3": + version "17.6.3" + resolved "https://registry.npmjs.org/@commitlint/lint/-/lint-17.6.3.tgz#2d9a88b73c44be8b97508c980198a6f289251655" + integrity sha512-fBlXwt6SHJFgm3Tz+luuo3DkydAx9HNC5y4eBqcKuDuMVqHd2ugMNr+bQtx6riv9mXFiPoKp7nE4Xn/ls3iVDA== dependencies: - "@commitlint/is-ignored" "^17.6.5" - "@commitlint/parse" "^17.6.5" - "@commitlint/rules" "^17.6.5" + "@commitlint/is-ignored" "^17.6.3" + "@commitlint/parse" "^17.4.4" + "@commitlint/rules" "^17.6.1" "@commitlint/types" "^17.4.4" "@commitlint/load@^17.5.0": @@ -1324,10 +1240,10 @@ resolved "https://registry.npmjs.org/@commitlint/message/-/message-17.4.2.tgz#f4753a79701ad6db6db21f69076e34de6580e22c" integrity sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q== -"@commitlint/parse@^17.6.5": - version "17.6.5" - resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-17.6.5.tgz#7b84b328a6a94ca08ab7c98c491d9d3dab68f09d" - integrity sha512-0zle3bcn1Hevw5Jqpz/FzEWNo2KIzUbc1XyGg6WrWEoa6GH3A1pbqNF6MvE6rjuy6OY23c8stWnb4ETRZyN+Yw== +"@commitlint/parse@^17.4.4": + version "17.4.4" + resolved "https://registry.npmjs.org/@commitlint/parse/-/parse-17.4.4.tgz#8311b12f2b730de6ea0679ae2a37b386bcc5b04b" + integrity sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg== dependencies: "@commitlint/types" "^17.4.4" conventional-changelog-angular "^5.0.11" @@ -1356,10 +1272,10 @@ resolve-from "^5.0.0" resolve-global "^1.0.0" -"@commitlint/rules@^17.6.5": - version "17.6.5" - resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.5.tgz#fabcacdde923e26ac5ef90d4b3f8fc05526bbaa1" - integrity sha512-uTB3zSmnPyW2qQQH+Dbq2rekjlWRtyrjDo4aLFe63uteandgkI+cc0NhhbBAzcXShzVk0qqp8SlkQMu0mgHg/A== +"@commitlint/rules@^17.6.1": + version "17.6.1" + resolved "https://registry.npmjs.org/@commitlint/rules/-/rules-17.6.1.tgz#dff529b8d1e0455808fe7e3e1fa70617e4eb2759" + integrity sha512-lUdHw6lYQ1RywExXDdLOKxhpp6857/4c95Dc/1BikrHgdysVUXz26yV0vp1GL7Gv+avx9WqZWTIVB7pNouxlfw== dependencies: "@commitlint/ensure" "^17.4.4" "@commitlint/message" "^17.4.2" @@ -1612,9 +1528,9 @@ tslib "^2.4.0" "@graphql-tools/merge@^8.4.1": - version "8.4.2" - resolved "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.2.tgz#95778bbe26b635e8d2f60ce9856b388f11fe8288" - integrity sha512-XbrHAaj8yDuINph+sAfuq3QCZ/tKblrTLOpirK0+CAgNlZUCHs0Fa+xtMUURgwCVThLle1AF7svJCxFizygLsw== + version "8.4.1" + resolved "https://registry.npmjs.org/@graphql-tools/merge/-/merge-8.4.1.tgz#52879e5f73565f504ceea04fcd9ef90a6e733c62" + integrity sha512-hssnPpZ818mxgl5+GfyOOSnnflAxiaTn1A1AojZcIbh4J52sS1Q0gSuBR5VrnUDjuxiqoCotpXdAQl+K+U6KLQ== dependencies: "@graphql-tools/utils" "^9.2.1" tslib "^2.4.0" @@ -1729,18 +1645,6 @@ resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== -"@jest/console@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz#2030606ec03a18c31803b8a36382762e447655df" - integrity sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - jest-message-util "^28.1.3" - jest-util "^28.1.3" - slash "^3.0.0" - "@jest/console@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/console/-/console-29.5.0.tgz#593a6c5c0d3f75689835f1b3b4688c4f8544cb57" @@ -1753,41 +1657,6 @@ jest-util "^29.5.0" slash "^3.0.0" -"@jest/core@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz#0ebf2bd39840f1233cd5f2d1e6fc8b71bd5a1ac7" - integrity sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA== - dependencies: - "@jest/console" "^28.1.3" - "@jest/reporters" "^28.1.3" - "@jest/test-result" "^28.1.3" - "@jest/transform" "^28.1.3" - "@jest/types" "^28.1.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 "^28.1.3" - jest-config "^28.1.3" - jest-haste-map "^28.1.3" - jest-message-util "^28.1.3" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.3" - jest-resolve-dependencies "^28.1.3" - jest-runner "^28.1.3" - jest-runtime "^28.1.3" - jest-snapshot "^28.1.3" - jest-util "^28.1.3" - jest-validate "^28.1.3" - jest-watcher "^28.1.3" - micromatch "^4.0.4" - pretty-format "^28.1.3" - rimraf "^3.0.0" - slash "^3.0.0" - strip-ansi "^6.0.0" - "@jest/core@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/core/-/core-29.5.0.tgz#76674b96904484e8214614d17261cc491e5f1f03" @@ -1822,16 +1691,6 @@ slash "^3.0.0" strip-ansi "^6.0.0" -"@jest/environment@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz#abed43a6b040a4c24fdcb69eab1f97589b2d663e" - integrity sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA== - dependencies: - "@jest/fake-timers" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - jest-mock "^28.1.3" - "@jest/environment@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/environment/-/environment-29.5.0.tgz#9152d56317c1fdb1af389c46640ba74ef0bb4c65" @@ -1842,13 +1701,6 @@ "@types/node" "*" jest-mock "^29.5.0" -"@jest/expect-utils@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz#58561ce5db7cd253a7edddbc051fb39dda50f525" - integrity sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA== - dependencies: - jest-get-type "^28.0.2" - "@jest/expect-utils@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.5.0.tgz#f74fad6b6e20f924582dc8ecbf2cb800fe43a036" @@ -1856,14 +1708,6 @@ dependencies: jest-get-type "^29.4.3" -"@jest/expect@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/expect/-/expect-28.1.3.tgz#9ac57e1d4491baca550f6bdbd232487177ad6a72" - integrity sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw== - dependencies: - expect "^28.1.3" - jest-snapshot "^28.1.3" - "@jest/expect@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/expect/-/expect-29.5.0.tgz#80952f5316b23c483fbca4363ce822af79c38fba" @@ -1872,18 +1716,6 @@ expect "^29.5.0" jest-snapshot "^29.5.0" -"@jest/fake-timers@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.3.tgz#230255b3ad0a3d4978f1d06f70685baea91c640e" - integrity sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw== - dependencies: - "@jest/types" "^28.1.3" - "@sinonjs/fake-timers" "^9.1.2" - "@types/node" "*" - jest-message-util "^28.1.3" - jest-mock "^28.1.3" - jest-util "^28.1.3" - "@jest/fake-timers@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.5.0.tgz#d4d09ec3286b3d90c60bdcd66ed28d35f1b4dc2c" @@ -1896,15 +1728,6 @@ jest-mock "^29.5.0" jest-util "^29.5.0" -"@jest/globals@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/globals/-/globals-28.1.3.tgz#a601d78ddc5fdef542728309894895b4a42dc333" - integrity sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA== - dependencies: - "@jest/environment" "^28.1.3" - "@jest/expect" "^28.1.3" - "@jest/types" "^28.1.3" - "@jest/globals@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/globals/-/globals-29.5.0.tgz#6166c0bfc374c58268677539d0c181f9c1833298" @@ -1915,37 +1738,6 @@ "@jest/types" "^29.5.0" jest-mock "^29.5.0" -"@jest/reporters@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.3.tgz#9adf6d265edafc5fc4a434cfb31e2df5a67a369a" - integrity sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg== - dependencies: - "@bcoe/v8-coverage" "^0.2.3" - "@jest/console" "^28.1.3" - "@jest/test-result" "^28.1.3" - "@jest/transform" "^28.1.3" - "@jest/types" "^28.1.3" - "@jridgewell/trace-mapping" "^0.3.13" - "@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 "^28.1.3" - jest-util "^28.1.3" - jest-worker "^28.1.3" - slash "^3.0.0" - string-length "^4.0.1" - strip-ansi "^6.0.0" - terminal-link "^2.0.0" - v8-to-istanbul "^9.0.1" - "@jest/reporters@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/reporters/-/reporters-29.5.0.tgz#985dfd91290cd78ddae4914ba7921bcbabe8ac9b" @@ -1976,13 +1768,6 @@ strip-ansi "^6.0.0" v8-to-istanbul "^9.0.1" -"@jest/schemas@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz#ad8b86a66f11f33619e3d7e1dcddd7f2d40ff905" - integrity sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg== - dependencies: - "@sinclair/typebox" "^0.24.1" - "@jest/schemas@^29.4.3": version "29.4.3" resolved "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz#39cf1b8469afc40b6f5a2baaa146e332c4151788" @@ -1990,15 +1775,6 @@ dependencies: "@sinclair/typebox" "^0.25.16" -"@jest/source-map@^28.1.2": - version "28.1.2" - resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-28.1.2.tgz#7fe832b172b497d6663cdff6c13b0a920e139e24" - integrity sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww== - dependencies: - "@jridgewell/trace-mapping" "^0.3.13" - callsites "^3.0.0" - graceful-fs "^4.2.9" - "@jest/source-map@^29.4.3": version "29.4.3" resolved "https://registry.npmjs.org/@jest/source-map/-/source-map-29.4.3.tgz#ff8d05cbfff875d4a791ab679b4333df47951d20" @@ -2008,16 +1784,6 @@ callsites "^3.0.0" graceful-fs "^4.2.9" -"@jest/test-result@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz#5eae945fd9f4b8fcfce74d239e6f725b6bf076c5" - integrity sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg== - dependencies: - "@jest/console" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/istanbul-lib-coverage" "^2.0.0" - collect-v8-coverage "^1.0.0" - "@jest/test-result@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/test-result/-/test-result-29.5.0.tgz#7c856a6ca84f45cc36926a4e9c6b57f1973f1408" @@ -2028,16 +1794,6 @@ "@types/istanbul-lib-coverage" "^2.0.0" collect-v8-coverage "^1.0.0" -"@jest/test-sequencer@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz#9d0c283d906ac599c74bde464bc0d7e6a82886c3" - integrity sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw== - dependencies: - "@jest/test-result" "^28.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.3" - slash "^3.0.0" - "@jest/test-sequencer@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.5.0.tgz#34d7d82d3081abd523dbddc038a3ddcb9f6d3cc4" @@ -2048,27 +1804,6 @@ jest-haste-map "^29.5.0" slash "^3.0.0" -"@jest/transform@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz#59d8098e50ab07950e0f2fc0fc7ec462371281b0" - integrity sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA== - dependencies: - "@babel/core" "^7.11.6" - "@jest/types" "^28.1.3" - "@jridgewell/trace-mapping" "^0.3.13" - babel-plugin-istanbul "^6.1.1" - chalk "^4.0.0" - convert-source-map "^1.4.0" - fast-json-stable-stringify "^2.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.3" - jest-regex-util "^28.0.2" - jest-util "^28.1.3" - micromatch "^4.0.4" - pirates "^4.0.4" - slash "^3.0.0" - write-file-atomic "^4.0.1" - "@jest/transform@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz#cf9c872d0965f0cbd32f1458aa44a2b1988b00f9" @@ -2090,18 +1825,6 @@ slash "^3.0.0" write-file-atomic "^4.0.2" -"@jest/types@^28.1.3": - version "28.1.3" - resolved "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz#b05de80996ff12512bc5ceb1d208285a7d11748b" - integrity sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ== - dependencies: - "@jest/schemas" "^28.1.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" - "@jest/types@^29.5.0": version "29.5.0" resolved "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz#f59ef9b031ced83047c67032700d8c807d6e1593" @@ -2138,7 +1861,7 @@ resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== -"@jridgewell/source-map@^0.3.3": +"@jridgewell/source-map@^0.3.2": version "0.3.3" resolved "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.3.tgz#8108265659d4c33e72ffe14e33d6cc5eb59f2fda" integrity sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== @@ -2496,10 +2219,10 @@ dependencies: semver "^7.3.5" -"@npmcli/git@^4.0.0", "@npmcli/git@^4.1.0": - version "4.1.0" - resolved "https://registry.npmjs.org/@npmcli/git/-/git-4.1.0.tgz#ab0ad3fd82bc4d8c1351b6c62f0fa56e8fe6afa6" - integrity sha512-9hwoB3gStVfa0N31ymBmrX+GuDGdVA/QWShZVqE0HK2Af+7QGGrCTbZia/SW0ImUTjTne7SP91qxDmtXvDHRPQ== +"@npmcli/git@^4.0.0": + version "4.0.4" + resolved "https://registry.npmjs.org/@npmcli/git/-/git-4.0.4.tgz#cdf74f21b1d440c0756fb28159d935129d9daa33" + integrity sha512-5yZghx+u5M47LghaybLCkdSyFzV/w4OuH12d96HO389Ik9CDsLaDZJVynSGGVJOLn6gy/k7Dz5XYcplM3uxXRg== dependencies: "@npmcli/promise-spawn" "^6.0.0" lru-cache "^7.4.4" @@ -2562,16 +2285,11 @@ integrity sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA== "@npmcli/package-json@^3.0.0": - version "3.1.1" - resolved "https://registry.npmjs.org/@npmcli/package-json/-/package-json-3.1.1.tgz#5628332aac90fa1b4d6f98e03988c5958b35e0c5" - integrity sha512-+UW0UWOYFKCkvszLoTwrYGrjNrT8tI5Ckeb/h+Z1y1fsNJEctl7HmerA5j2FgmoqFaLI2gsA1X9KgMFqx/bRmA== + version "3.0.0" + resolved "https://registry.npmjs.org/@npmcli/package-json/-/package-json-3.0.0.tgz#c9219a197e1be8dbf43c4ef8767a72277c0533b6" + integrity sha512-NnuPuM97xfiCpbTEJYtEuKz6CFbpUHtaT0+5via5pQeI25omvQDFbp1GcGJ/c4zvL/WX0qbde6YiLgfZbWFgvg== dependencies: - "@npmcli/git" "^4.1.0" - glob "^10.2.2" json-parse-even-better-errors "^3.0.0" - normalize-package-data "^5.0.0" - npm-normalize-package-bin "^3.0.1" - proc-log "^3.0.0" "@npmcli/promise-spawn@^3.0.0": version "3.0.0" @@ -2687,14 +2405,16 @@ nx "15.9.4" "@octokit/auth-token@^3.0.0": - version "3.0.4" - resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.4.tgz#70e941ba742bdd2b49bdb7393e821dea8520a3db" - integrity sha512-TWFX7cZF2LXoCvdmJWY7XVPi74aSY0+FfBZNSXEXFkMpjcqsQwDSYVv5FhRFaI0V1ECnwbz4j59T/G+rXNWaIQ== + version "3.0.3" + resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-3.0.3.tgz#ce7e48a3166731f26068d7a7a7996b5da58cbe0c" + integrity sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA== + dependencies: + "@octokit/types" "^9.0.0" "@octokit/core@^4.0.0": - version "4.2.1" - resolved "https://registry.npmjs.org/@octokit/core/-/core-4.2.1.tgz#fee6341ad0ce60c29cc455e056cd5b500410a588" - integrity sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw== + version "4.2.0" + resolved "https://registry.npmjs.org/@octokit/core/-/core-4.2.0.tgz#8c253ba9605aca605bc46187c34fcccae6a96648" + integrity sha512-AgvDRUg3COpR82P7PBdGZF/NNqGmtMq2NiPqeSsDIeCfYFOZ9gddqWNQHnFdEUf+YwOj4aZYmJnlPp7OXmDIDg== dependencies: "@octokit/auth-token" "^3.0.0" "@octokit/graphql" "^5.0.0" @@ -2705,18 +2425,18 @@ universal-user-agent "^6.0.0" "@octokit/endpoint@^7.0.0": - version "7.0.6" - resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.6.tgz#791f65d3937555141fb6c08f91d618a7d645f1e2" - integrity sha512-5L4fseVRUsDFGR00tMWD/Trdeeihn999rTMGRMC1G/Ldi1uWlWJzI98H4Iak5DB/RVvQuyMYKqSK/R6mbSOQyg== + version "7.0.5" + resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-7.0.5.tgz#2bb2a911c12c50f10014183f5d596ce30ac67dd1" + integrity sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA== dependencies: "@octokit/types" "^9.0.0" is-plain-object "^5.0.0" universal-user-agent "^6.0.0" "@octokit/graphql@^5.0.0": - version "5.0.6" - resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248" - integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw== + version "5.0.5" + resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-5.0.5.tgz#a4cb3ea73f83b861893a6370ee82abb36e81afd2" + integrity sha512-Qwfvh3xdqKtIznjX9lz2D458r7dJPP8l6r4GQkIdWQouZwHQK0mVT88uwiU2bdTU2OtT1uOlKpRciUWldpG0yQ== dependencies: "@octokit/request" "^6.0.0" "@octokit/types" "^9.0.0" @@ -2732,10 +2452,10 @@ resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-14.0.0.tgz#949c5019028c93f189abbc2fb42f333290f7134a" integrity sha512-HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw== -"@octokit/openapi-types@^18.0.0": - version "18.0.0" - resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-18.0.0.tgz#f43d765b3c7533fd6fb88f3f25df079c24fccf69" - integrity sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw== +"@octokit/openapi-types@^17.1.1": + version "17.1.1" + resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-17.1.1.tgz#b046979537d4209954206d29fbf9fe6893c5acec" + integrity sha512-/X7Gh/qWiWaooJmUnYD48SYy72fyrk2ceisOSe89JojK7r0j8YrTwYpDi76kI+c6QiqX1KSgdoBTMJvktsDkYw== "@octokit/plugin-enterprise-rest@6.0.1": version "6.0.1" @@ -2772,9 +2492,9 @@ once "^1.4.0" "@octokit/request@^6.0.0": - version "6.2.6" - resolved "https://registry.npmjs.org/@octokit/request/-/request-6.2.6.tgz#ff8f503c690f84e3ebd33d2d43e63c0a27ac50e0" - integrity sha512-T/waXf/xjie8Qn5IyFYAcI/HXvw9SPkcQWErGP9H471IWRDRCN+Gn/QOptPMAZRT4lJb2bLHxQfCXjU0mJRyng== + version "6.2.3" + resolved "https://registry.npmjs.org/@octokit/request/-/request-6.2.3.tgz#76d5d6d44da5c8d406620a4c285d280ae310bdb4" + integrity sha512-TNAodj5yNzrrZ/VxP+H5HiYaZep0H3GU0O7PaF+fhDrt8FPrnkei9Aal/txsN/1P7V3CPiThG0tIvpPDYUsyAA== dependencies: "@octokit/endpoint" "^7.0.0" "@octokit/request-error" "^3.0.0" @@ -2808,11 +2528,11 @@ "@octokit/openapi-types" "^14.0.0" "@octokit/types@^9.0.0": - version "9.3.2" - resolved "https://registry.npmjs.org/@octokit/types/-/types-9.3.2.tgz#3f5f89903b69f6a2d196d78ec35f888c0013cac5" - integrity sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA== + version "9.2.1" + resolved "https://registry.npmjs.org/@octokit/types/-/types-9.2.1.tgz#34ab724b66ffbe210604593127bb47fd044abbc7" + integrity sha512-Vx4keMiD/CAiwVFasLcH0xBSVbKIHebIZke9i7ZbUWGNN4vJFWSYH6Nvga7UY9NIJCGa6x3QG849XTbi5wYmkA== dependencies: - "@octokit/openapi-types" "^18.0.0" + "@octokit/openapi-types" "^17.1.1" "@parcel/bundler-default@2.6.2": version "2.6.2" @@ -3167,20 +2887,6 @@ resolved "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.1.0.tgz#957cb64ea2f5ce527cc9cf02a096baeb0d2b99b4" integrity sha512-a31EnjuIDSX8IXBUib3cYLDRlPMU36AWX4xS8ysLaNu4ZzUesDiPt83pgrW2X1YLMe5L2HbDyaKK5BrL4cNKaQ== -"@sigstore/tuf@^1.0.0": - version "1.0.0" - resolved "https://registry.npmjs.org/@sigstore/tuf/-/tuf-1.0.0.tgz#13b69323e7bf8de458cd6c952c57acd1169772a5" - integrity sha512-bLzi9GeZgMCvjJeLUIfs8LJYCxrPRA8IXQkzUtaFKKVPTz0mucRyqFcV2U20yg9K+kYAD0YSitzGfRZCFLjdHQ== - dependencies: - "@sigstore/protobuf-specs" "^0.1.0" - make-fetch-happen "^11.0.1" - tuf-js "^1.1.3" - -"@sinclair/typebox@^0.24.1": - version "0.24.51" - resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz#645f33fe4e02defe26f2f5c0410e1c094eac7f5f" - integrity sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA== - "@sinclair/typebox@^0.25.16": version "0.25.24" resolved "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz#8c7688559979f7079aacaf31aa881c3aa410b718" @@ -3212,33 +2918,19 @@ escape-string-regexp "^2.0.0" lodash.deburr "^4.1.0" -"@sinonjs/commons@^1.7.0": - version "1.8.6" - resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz#80c516a4dc264c2a69115e7578d62581ff455ed9" - integrity sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ== - dependencies: - type-detect "4.0.8" - -"@sinonjs/commons@^3.0.0": - version "3.0.0" - resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz#beb434fe875d965265e04722ccfc21df7f755d72" - integrity sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA== +"@sinonjs/commons@^2.0.0": + version "2.0.0" + resolved "https://registry.npmjs.org/@sinonjs/commons/-/commons-2.0.0.tgz#fd4ca5b063554307e8327b4564bd56d3b73924a3" + integrity sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg== dependencies: type-detect "4.0.8" "@sinonjs/fake-timers@^10.0.2": - version "10.2.0" - resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.2.0.tgz#b3e322a34c5f26e3184e7f6115695f299c1b1194" - integrity sha512-OPwQlEdg40HAj5KNF8WW6q2KG4Z+cBCZb3m4ninfTZKaBmbIJodviQsDBoYMPHkOyJJMHnOJo5j2+LKDOhOACg== + version "10.0.2" + resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.0.2.tgz#d10549ed1f423d80639c528b6c7f5a1017747d0c" + integrity sha512-SwUDyjWnah1AaNl7kxsa7cfLhlTYoiyhDAIgyh+El30YvXs/o7OLXpYH88Zdhyx9JExKrmHDJ+10bwIcY80Jmw== dependencies: - "@sinonjs/commons" "^3.0.0" - -"@sinonjs/fake-timers@^9.1.2": - version "9.1.2" - resolved "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz#4eaab737fab77332ab132d396a3c0d364bd0ea8c" - integrity sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw== - dependencies: - "@sinonjs/commons" "^1.7.0" + "@sinonjs/commons" "^2.0.0" "@socket.io/component-emitter@~3.1.0": version "3.1.0" @@ -3317,9 +3009,9 @@ integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== "@tsconfig/node16@^1.0.2": - version "1.0.4" - resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" - integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + version "1.0.3" + resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.3.tgz#472eaab5f15c1ffdd7f8628bd4c4f753995ec79e" + integrity sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ== "@tufjs/canonical-json@1.0.0": version "1.0.0" @@ -3347,9 +3039,9 @@ integrity sha512-qLOvfmlG2vCVw5fo/oz8WAZYlpe5a5OurgTj3diIxJCdjRHpapC+vQCz3er9LV79Vcat+DifBjeAhOAdmndtDQ== "@types/babel__core@^7.1.14": - version "7.20.1" - resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.1.tgz#916ecea274b0c776fec721e333e55762d3a9614b" - integrity sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw== + version "7.20.0" + resolved "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz#61bc5a4cae505ce98e1e36c5445e4bee060d8891" + integrity sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ== dependencies: "@babel/parser" "^7.20.7" "@babel/types" "^7.20.7" @@ -3373,11 +3065,11 @@ "@babel/types" "^7.0.0" "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": - version "7.20.1" - resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.1.tgz#dd6f1d2411ae677dcb2db008c962598be31d6acf" - integrity sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg== + version "7.18.5" + resolved "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.18.5.tgz#c107216842905afafd3b6e774f6f935da6f5db80" + integrity sha512-enCvTL8m/EHS/zIvJno9nE+ndYPh1/oNFzRYRmtUqJICG2VnCSBzMLW5VN2KCQU91f23tsNKR8v7VJJQMatl7Q== dependencies: - "@babel/types" "^7.20.7" + "@babel/types" "^7.3.0" "@types/cacheable-request@^6.0.1": version "6.0.3" @@ -3425,9 +3117,9 @@ "@types/estree" "*" "@types/eslint@*": - version "8.40.2" - resolved "https://registry.npmjs.org/@types/eslint/-/eslint-8.40.2.tgz#2833bc112d809677864a4b0e7d1de4f04d7dac2d" - integrity sha512-PRVjQ4Eh9z9pmmtaq8nTjZjQwKFk7YIHIud3lRoKRBgUQjgjRmoGxxGEPXQkF+lH7QkHJRNr5F4aBgYCW0lqpQ== + version "8.37.0" + resolved "https://registry.npmjs.org/@types/eslint/-/eslint-8.37.0.tgz#29cebc6c2a3ac7fea7113207bf5a828fdf4d7ef1" + integrity sha512-Piet7dG2JBuDIfohBngQ3rCt7MgO9xCO4xIMKxBThCq5PNRB91IjlJ10eJVwfoNtvTErmxLzwBZ7rHZtbOMmFQ== dependencies: "@types/estree" "*" "@types/json-schema" "*" @@ -3538,17 +3230,17 @@ "@types/istanbul-lib-report" "*" "@types/jest@*": - version "29.5.2" - resolved "https://registry.npmjs.org/@types/jest/-/jest-29.5.2.tgz#86b4afc86e3a8f3005b297ed8a72494f89e6395b" - integrity sha512-mSoZVJF5YzGVCk+FsDxzDuH7s+SCkzrgKZzf0Z0T2WudhBUPoF6ktoTPC4R0ZoCPCV5xUvuU6ias5NvxcBcMMg== + version "29.5.1" + resolved "https://registry.npmjs.org/@types/jest/-/jest-29.5.1.tgz#83c818aa9a87da27d6da85d3378e5a34d2f31a47" + integrity sha512-tEuVcHrpaixS36w7hpsfLBLpjtMRJUE09/MHXn923LOVojDwyC14cWcfc0rDs0VEfUyYmt/+iX1kxxp+gZMcaQ== dependencies: expect "^29.0.0" pretty-format "^29.0.0" "@types/json-schema@*", "@types/json-schema@^7.0.4", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.7", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9": - version "7.0.12" - resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.12.tgz#d70faba7039d5fca54c83c7dbab41051d2b6f6cb" - integrity sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA== + version "7.0.11" + resolved "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" + integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== "@types/json5@^0.0.29": version "0.0.29" @@ -3585,9 +3277,9 @@ "@types/lodash" "*" "@types/lodash@*", "@types/lodash@^4.14.92": - version "4.14.195" - resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.195.tgz#bafc975b252eb6cea78882ce8a7b6bf22a6de632" - integrity sha512-Hwx9EUgdwf2GLarOjQp5ZH8ZmblzcbTBC2wtQWNKARBSxM9ezRIAUpeDTgoQRAFB0+8CNWXVA9+MaSOzOF3nPg== + version "4.14.194" + resolved "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.194.tgz#b71eb6f7a0ff11bff59fc987134a093029258a76" + integrity sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== "@types/mdast@^3.0.0": version "3.0.11" @@ -3619,17 +3311,17 @@ "@types/node" "*" "@types/node-fetch@2": - version "2.6.4" - resolved "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.4.tgz#1bc3a26de814f6bf466b25aeb1473fa1afe6a660" - integrity sha512-1ZX9fcN4Rvkvgv4E6PAY5WXUFWFcRWxZa3EW83UjycOB9ljJCedb2CupIP4RZMEwF/M3eTcCihbBRgwtGbg5Rg== + version "2.6.3" + resolved "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.3.tgz#175d977f5e24d93ad0f57602693c435c57ad7e80" + integrity sha512-ETTL1mOEdq/sxUtgtOhKjyB2Irra4cjxksvcMUR5Zr4n+PxVhsCD9WS46oPbHL3et9Zde7CNRr+WUNlcHvsX+w== dependencies: "@types/node" "*" form-data "^3.0.0" "@types/node@*", "@types/node@>=10.0.0": - version "20.3.1" - resolved "https://registry.npmjs.org/@types/node/-/node-20.3.1.tgz#e8a83f1aa8b649377bb1fb5d7bac5cb90e784dfe" - integrity sha512-EhcH/wvidPy1WeML3TtYFGR83UzjxeWRen9V402T8aUGYsCHOmfoisV3ZSg03gAFIbLq8TnWOJ0f4cALtnSEUg== + version "20.1.2" + resolved "https://registry.npmjs.org/@types/node/-/node-20.1.2.tgz#8fd63447e3f99aba6c3168fd2ec4580d5b97886f" + integrity sha512-CTO/wa8x+rZU626cL2BlbCDzydgnFNgc19h4YvizpTO88MFQxab8wqisxaofQJ/9bLGugRdWIuX/TbIs6VVF6g== "@types/node@^8.5.7": version "8.10.66" @@ -3652,9 +3344,9 @@ integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== "@types/prettier@^2.1.5": - version "2.7.3" - resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz#3e51a17e291d01d17d3fc61422015a933af7a08f" - integrity sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA== + version "2.7.2" + resolved "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.2.tgz#6c2324641cc4ba050a8c710b2b251b377581fbf0" + integrity sha512-KufADq8uQqo1pYKVIYzfKbJfBAc0sOeXqGbFaSpv8MRmC/zXgowNZmFcbngndGk922QDmOASEXUZCaY48gs4cg== "@types/prop-types@*": version "15.7.5" @@ -3674,9 +3366,9 @@ "@types/react" "*" "@types/react@*": - version "18.2.12" - resolved "https://registry.npmjs.org/@types/react/-/react-18.2.12.tgz#95d584338610b78bb9ba0415e3180fb03debdf97" - integrity sha512-ndmBMLCgn38v3SntMeoJaIrO6tGHYKMEBohCUmw8HoLLQdRMOIGXfeYaBTLe2lsFaSB3MOK1VXscYFnmLtTSmw== + version "18.2.6" + resolved "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz#5cd53ee0d30ffc193b159d3516c8c8ad2f19d571" + integrity sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA== dependencies: "@types/prop-types" "*" "@types/scheduler" "*" @@ -3720,9 +3412,9 @@ integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== "@types/testing-library__jest-dom@^5.9.1": - version "5.14.6" - resolved "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.6.tgz#4887f6e1af11215428ab02777873bcede98a53b0" - integrity sha512-FkHXCb+ikSoUP4Y4rOslzTdX5sqYwMxfefKh1GmZ8ce1GOkEHntSp6b5cGadmNfp5e4BMEWOMx+WSKd5/MqlDA== + version "5.14.5" + resolved "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.14.5.tgz#d113709c90b3c75fdb127ec338dad7d5f86c974f" + integrity sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ== dependencies: "@types/jest" "*" @@ -3772,9 +3464,9 @@ "@types/yargs-parser" "*" "@types/yarnpkg__lockfile@^1.1.5": - version "1.1.6" - resolved "https://registry.npmjs.org/@types/yarnpkg__lockfile/-/yarnpkg__lockfile-1.1.6.tgz#60a35ede6197d8cbedd5bb8393f3921e8d56d44b" - integrity sha512-kbdQa3J+hVCkqmGQm31fthEwGxszZtepw84p9QGCiJB7TmiPqPAf3/g9eZUnkCeanmiFOaG4pVhiPDyqJxaoaw== + version "1.1.5" + resolved "https://registry.npmjs.org/@types/yarnpkg__lockfile/-/yarnpkg__lockfile-1.1.5.tgz#9639020e1fb65120a2f4387db8f1e8b63efdf229" + integrity sha512-8NYnGOctzsI4W0ApsP/BIHD/LnxpJ6XaGf2AZmz4EyDYJMxtprN4279dLNI1CPZcwC9H18qYcaFv4bXi0wmokg== "@types/yauzl@^2.9.1": version "2.10.0" @@ -4124,9 +3816,9 @@ integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== "@yarnpkg/parsers@^3.0.0-rc.18": - version "3.0.0-rc.45" - resolved "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.45.tgz#fcc7d0ab7828afdb20d1e13160b1d117c07536f4" - integrity sha512-Aj0aHBV/crFQTpKQvL6k1xNiOhnlfVLu06LunelQAvl1MTeWrSi8LD9UJJDCFJiG4kx8NysUE6Tx0KZyPQUzIw== + version "3.0.0-rc.43" + resolved "https://registry.npmjs.org/@yarnpkg/parsers/-/parsers-3.0.0-rc.43.tgz#2bf720ec6444e3f002f40dce734c262e9f3d888a" + integrity sha512-AhFF3mIDfA+jEwQv2WMHmiYhOvmdbh2qhUkDVQfiqzQtUwS4BgoWwom5NpSPg4Ix5vOul+w1690Bt21CkVLpgg== dependencies: js-yaml "^3.10.0" tslib "^2.4.0" @@ -4138,6 +3830,14 @@ dependencies: argparse "^2.0.1" +JSONStream@^0.8.4: + version "0.8.4" + resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz#91657dfe6ff857483066132b4618b62e8f4887bd" + integrity sha512-l0NN3IcqrZfZBJp7JWDJIHsnPV7yzJWqsYxQzL8Fwdx1BmEMjLuvtYkv+P9pbvpyfP75/f4MeDZhWNU4is32uA== + dependencies: + jsonparse "0.0.5" + through ">=2.2.7 <3" + JSONStream@^1.0.4: version "1.3.5" resolved "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz#3208c1f08d3a4d99261ab64f92302bc15e111ca0" @@ -4176,10 +3876,10 @@ accepts@^1.3.7, accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8: mime-types "~2.1.34" negotiator "0.6.3" -acorn-import-assertions@^1.9.0: - version "1.9.0" - resolved "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac" - integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA== +acorn-import-assertions@^1.7.6: + version "1.8.0" + resolved "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz#ba2b5939ce62c238db6d93d81c9b111b29b855e9" + integrity sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw== acorn-jsx@^5.3.1: version "5.3.2" @@ -4208,7 +3908,7 @@ acorn@^7.4.0: resolved "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== -acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.1, acorn@^8.8.2: +acorn@^8.4.1, acorn@^8.5.0, acorn@^8.7.1: version "8.8.2" resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== @@ -4287,6 +3987,11 @@ ajv-formats@^2.1.1: dependencies: ajv "^8.0.0" +ajv-keywords@^1.0.0: + version "1.5.1" + resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz#314dd0a4b3368fad3dfcdc54ede6171b886daf3c" + integrity sha512-vuBv+fm2s6cqUyey2A7qYcvsik+GMDJsw8BARP2sDE76cqmaZVarsvHf7Vx6VJ0Xk8gLl+u3MoAPf6gKzJefeA== + ajv-keywords@^3.4.1, ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" @@ -4299,6 +4004,14 @@ ajv-keywords@^5.1.0: dependencies: fast-deep-equal "^3.1.3" +ajv@^4.7.0: + version "4.11.8" + resolved "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz#82ffb02b29e662ae53bdc20af15947706739c536" + integrity sha512-I/bSHSNEcFFqXLf91nchoNB9D1Kie3QKcWdchYUaoIg1+1bdWDkdfdlvdIOJbi9U8xR0y+MWc5D+won9v95WlQ== + dependencies: + co "^4.6.0" + json-stable-stringify "^1.0.1" + ajv@^6.10.0, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.12.5: version "6.12.6" resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -4320,9 +4033,9 @@ ajv@^8.0.0, ajv@^8.0.1, ajv@^8.11.0, ajv@^8.9.0: uri-js "^4.2.2" all-contributors-cli@^6.25.0: - version "6.26.0" - resolved "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.26.0.tgz#5eaebdfc183290bfd2d3cc018a1e102ae83137a0" - integrity sha512-HOMfawD0XyNbOvLUn7rOAP5N9RLnbH+Y/9/IoxwPzCmy6srHSFyRMwbpD0H7Tw+1QzdJT8RH7bTe1IZkPhF+NQ== + version "6.25.0" + resolved "https://registry.npmjs.org/all-contributors-cli/-/all-contributors-cli-6.25.0.tgz#e6bcd79e8ad51826250a70933bad8f9628a927f9" + integrity sha512-vsMPLmpnYxzUV0Em/4RNmrnmCruUnIWcY10I0QNRUU9A0275VEuJTVhICi/L2V6foIemwog3ZeNfNV9qeetfsw== dependencies: "@babel/runtime" "^7.7.6" async "^3.1.0" @@ -4334,8 +4047,11 @@ all-contributors-cli@^6.25.0: node-fetch "^2.6.0" pify "^5.0.0" yargs "^15.0.1" - optionalDependencies: - prettier "^2" + +amdefine@>=0.0.4: + version "1.0.1" + resolved "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" + integrity sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg== anser@^2.1.0: version "2.1.1" @@ -4376,6 +4092,11 @@ ansi-regex@^2.0.0: resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== +ansi-regex@^3.0.0: + version "3.0.1" + resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== + ansi-regex@^4.1.0: version "4.1.1" resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" @@ -4482,11 +4203,11 @@ argparse@^2.0.1: integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== aria-query@^5.0.0, aria-query@^5.1.3: - version "5.2.1" - resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.2.1.tgz#bc285d9d654d1df121bcd0c134880d415ca67c15" - integrity sha512-7uFg4b+lETFgdaJyETnILsXgnnzVnkHcgRbwbPwevm5x/LmUlt3MjczMRe1zg824iBgXZNRPTBftNYyRSKLp2g== + version "5.1.3" + resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" + integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== dependencies: - dequal "^2.0.3" + deep-equal "^2.0.5" arity-n@^1.0.4: version "1.0.4" @@ -4516,6 +4237,11 @@ array-buffer-byte-length@^1.0.0: call-bind "^1.0.2" is-array-buffer "^3.0.1" +array-differ@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" + integrity sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ== + array-differ@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz#3cbb3d0f316810eafcc47624734237d6aee4ae6b" @@ -4526,6 +4252,11 @@ array-each@^1.0.1: resolved "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" integrity sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA== +array-find-index@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" + integrity sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw== + array-flatten@1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" @@ -4557,11 +4288,23 @@ array-slice@^1.0.0: resolved "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng== + dependencies: + array-uniq "^1.0.1" + array-union@^2.1.0: version "2.1.0" resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q== + array.prototype.filter@^1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.2.tgz#5f90ca6e3d01c31ea8db24c147665541db28bb4c" @@ -4625,7 +4368,7 @@ array.prototype.tosorted@^1.1.1: es-shim-unscopables "^1.0.0" get-intrinsic "^1.1.3" -arrify@^1.0.1: +arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA== @@ -4699,15 +4442,27 @@ autoprefixer@^10.4.0, autoprefixer@^10.4.14: picocolors "^1.0.0" postcss-value-parser "^4.2.0" +autoprefixer@^6.0.0: + version "6.7.7" + resolved "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz#1dbd1c835658e35ce3f9984099db00585c782014" + integrity sha512-WKExI/eSGgGAkWAO+wMVdFObZV7hQen54UpD1kCCTN3tvlL3W1jL4+lPP/M7MwoP7Q4RHzKtO3JQ4HxYEcd+xQ== + dependencies: + browserslist "^1.7.6" + caniuse-db "^1.0.30000634" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^5.2.16" + postcss-value-parser "^3.2.3" + available-typed-arrays@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== axe-core@^4.6.2: - version "4.7.2" - resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz#040a7342b20765cb18bb50b628394c21bccc17a0" - integrity sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g== + version "4.7.0" + resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz#34ba5a48a8b564f67e103f0aa5768d76e15bbbbf" + integrity sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ== axios@^0.21.1: version "0.21.4" @@ -4726,11 +4481,11 @@ axios@^1.0.0, axios@^1.2.1: proxy-from-env "^1.1.0" axobject-query@^3.1.1: - version "3.2.1" - resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz#39c378a6e3b06ca679f29138151e45b2b32da62a" - integrity sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg== + version "3.1.1" + resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" + integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== dependencies: - dequal "^2.0.3" + deep-equal "^2.0.5" babel-code-frame@^6.26.0: version "6.26.0" @@ -4750,19 +4505,6 @@ babel-helper-builder-react-jsx@^6.24.1: babel-types "^6.26.0" esutils "^2.0.2" -babel-jest@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.3.tgz#c1187258197c099072156a0a121c11ee1e3917d5" - integrity sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q== - dependencies: - "@jest/transform" "^28.1.3" - "@types/babel__core" "^7.1.14" - babel-plugin-istanbul "^6.1.1" - babel-preset-jest "^28.1.3" - chalk "^4.0.0" - graceful-fs "^4.2.9" - slash "^3.0.0" - babel-jest@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/babel-jest/-/babel-jest-29.5.0.tgz#3fe3ddb109198e78b1c88f9ebdecd5e4fc2f50a5" @@ -4839,16 +4581,6 @@ babel-plugin-istanbul@^6.1.1: istanbul-lib-instrument "^5.0.4" test-exclude "^6.0.0" -babel-plugin-jest-hoist@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz#1952c4d0ea50f2d6d794353762278d1d8cca3fbe" - integrity sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q== - dependencies: - "@babel/template" "^7.3.3" - "@babel/types" "^7.3.3" - "@types/babel__core" "^7.1.14" - "@types/babel__traverse" "^7.0.6" - babel-plugin-jest-hoist@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.5.0.tgz#a97db437936f441ec196990c9738d4b88538618a" @@ -4879,29 +4611,29 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.4.3: - version "0.4.3" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.3.tgz#75044d90ba5043a5fb559ac98496f62f3eb668fd" - integrity sha512-bM3gHc337Dta490gg+/AseNB9L4YLHxq1nGKZZSHbhXv4aTYU2MD2cjza1Ru4S6975YLTaL1K8uJf6ukJhhmtw== +babel-plugin-polyfill-corejs2@^0.3.3: + version "0.3.3" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz#5d1bd3836d0a19e1b84bbf2d9640ccb6f951c122" + integrity sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q== dependencies: "@babel/compat-data" "^7.17.7" - "@babel/helper-define-polyfill-provider" "^0.4.0" + "@babel/helper-define-polyfill-provider" "^0.3.3" semver "^6.1.1" -babel-plugin-polyfill-corejs3@^0.8.1: - version "0.8.1" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.1.tgz#39248263c38191f0d226f928d666e6db1b4b3a8a" - integrity sha512-ikFrZITKg1xH6pLND8zT14UPgjKHiGLqex7rGEZCH2EvhsneJaJPemmpQaIZV5AL03II+lXylw3UmddDK8RU5Q== +babel-plugin-polyfill-corejs3@^0.6.0: + version "0.6.0" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz#56ad88237137eade485a71b52f72dbed57c6230a" + integrity sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.0" - core-js-compat "^3.30.1" + "@babel/helper-define-polyfill-provider" "^0.3.3" + core-js-compat "^3.25.1" -babel-plugin-polyfill-regenerator@^0.5.0: - version "0.5.0" - resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.0.tgz#e7344d88d9ef18a3c47ded99362ae4a757609380" - integrity sha512-hDJtKjMLVa7Z+LwnTCxoDLQj6wdc+B8dun7ayF2fYieI6OzfuvcLMB32ihJZ4UhCBwNYGl5bg/x/P9cMdnkc2g== +babel-plugin-polyfill-regenerator@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz#390f91c38d90473592ed43351e801a9d3e0fd747" + integrity sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw== dependencies: - "@babel/helper-define-polyfill-provider" "^0.4.0" + "@babel/helper-define-polyfill-provider" "^0.3.3" babel-plugin-remove-graphql-queries@^4.25.0: version "4.25.0" @@ -4913,15 +4645,15 @@ babel-plugin-remove-graphql-queries@^4.25.0: gatsby-core-utils "^3.25.0" "babel-plugin-styled-components@>= 1.12.0", babel-plugin-styled-components@^2.0.7: - version "2.1.3" - resolved "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.3.tgz#f5616bee99efca6685e500fe45db87f26cb42ba7" - integrity sha512-jBioLwBVHpOMU4NsueH/ADcHrjS0Y/WTpt2eGVmmuSFNEv2DF3XhcMncuZlbbjxQ4vzxg+yEr6E6TNjrIQbsJQ== + version "2.1.1" + resolved "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-2.1.1.tgz#cd977cc0ff8410d5cbfdd142e42576e9c8794b87" + integrity sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA== dependencies: - "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-module-imports" "^7.21.4" + "@babel/helper-annotate-as-pure" "^7.16.0" + "@babel/helper-module-imports" "^7.16.0" babel-plugin-syntax-jsx "^6.18.0" lodash "^4.17.21" - picomatch "^2.3.1" + picomatch "^2.3.0" babel-plugin-syntax-decorators@^6.1.18: version "6.13.0" @@ -5076,14 +4808,6 @@ babel-preset-gatsby@^2.24.0, babel-preset-gatsby@^2.25.0: gatsby-core-utils "^3.25.0" gatsby-legacy-polyfills "^2.25.0" -babel-preset-jest@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz#5dfc20b99abed5db994406c2b9ab94c73aaa419d" - integrity sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A== - dependencies: - babel-plugin-jest-hoist "^28.1.3" - babel-preset-current-node-syntax "^1.0.0" - babel-preset-jest@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.5.0.tgz#57bc8cc88097af7ff6a5ab59d1cd29d52a5916e2" @@ -5158,6 +4882,11 @@ bail@^1.0.0: resolved "https://registry.npmjs.org/bail/-/bail-1.0.5.tgz#b6fa133404a392cbc1f8c4bf63f5953351e7a776" integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== +balanced-match@^0.4.0: + version "0.4.2" + resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz#cb3f3e3c732dc0f01ee70b403f302e61d7709838" + integrity sha512-STw03mQKnGUYtoNjmowo4F2cRmIIxYEGiMsjjwla/u5P1lxadj/05WkNaFjNiKTgJkj8KiXbgAiRTmcQRwQNtg== + balanced-match@^1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" @@ -5334,15 +5063,23 @@ braces@^3.0.2, braces@~3.0.2: dependencies: fill-range "^7.0.1" +browserslist@^1.1.1, browserslist@^1.1.3, browserslist@^1.7.6: + version "1.7.7" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz#0bd76704258be829b2398bb50e4b62d1a166b0b9" + integrity sha512-qHJblDE2bXVRYzuDetv/wAeHOJyO97+9wxC1cdCtyzgNuSozOyRCiiLaCR1f71AN66lQdVVBipWm63V+a7bPOw== + dependencies: + caniuse-db "^1.0.30000639" + electron-to-chromium "^1.2.7" + browserslist@^4.0.0, browserslist@^4.14.5, browserslist@^4.16.3, browserslist@^4.17.5, browserslist@^4.18.1, browserslist@^4.21.3, browserslist@^4.21.4, browserslist@^4.21.5, browserslist@^4.6.6: - version "4.21.8" - resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.8.tgz#db2498e1f4b80ed199c076248a094935860b6017" - integrity sha512-j+7xYe+v+q2Id9qbBeCI8WX5NmZSRe8es1+0xntD/+gaWXznP8tFEkv5IgSaHf5dS1YwVMbX/4W6m937mj+wQw== + version "4.21.5" + resolved "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz#75c5dae60063ee641f977e00edd3cfb2fb7af6a7" + integrity sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w== dependencies: - caniuse-lite "^1.0.30001502" - electron-to-chromium "^1.4.428" - node-releases "^2.0.12" - update-browserslist-db "^1.0.11" + caniuse-lite "^1.0.30001449" + electron-to-chromium "^1.4.284" + node-releases "^2.0.8" + update-browserslist-db "^1.0.10" bser@2.1.1: version "2.1.1" @@ -5436,9 +5173,9 @@ cacache@^16.1.0: unique-filename "^2.0.0" cacache@^17.0.0, cacache@^17.0.4: - version "17.1.3" - resolved "https://registry.npmjs.org/cacache/-/cacache-17.1.3.tgz#c6ac23bec56516a7c0c52020fd48b4909d7c7044" - integrity sha512-jAdjGxmPxZh0IipMdR7fK/4sDSrHMLUV0+GvVUsjwyGNKHsh79kW/otg+GkbXwl6Uzvy9wsvHOX4nUoWldeZMg== + version "17.1.0" + resolved "https://registry.npmjs.org/cacache/-/cacache-17.1.0.tgz#b7286ef941dafe55b461cdcdceda71cacc1eb98d" + integrity sha512-hXpFU+Z3AfVmNuiLve1qxWHMq0RSIt5gjCKAHi/M6DktwFwDdAXAtunl1i4WSKaaVcU9IsRvXFg42jTHigcC6Q== dependencies: "@npmcli/fs" "^3.1.0" fs-minipass "^3.0.0" @@ -5481,9 +5218,9 @@ cacheable-request@^6.0.0: responselike "^1.0.2" cacheable-request@^7.0.2: - version "7.0.4" - resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz#7a33ebf08613178b403635be7b899d3e69bbe817" - integrity sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg== + version "7.0.2" + resolved "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.2.tgz#ea0d0b889364a25854757301ca12b2da77f91d27" + integrity sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew== dependencies: clone-response "^1.0.2" get-stream "^5.1.0" @@ -5493,7 +5230,7 @@ cacheable-request@^7.0.2: normalize-url "^6.0.1" responselike "^2.0.0" -call-bind@^1.0.0, call-bind@^1.0.2: +call-bind@^1.0.0, call-bind@^1.0.2, call-bind@~1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== @@ -5527,6 +5264,14 @@ camelcase-css@2.0.1, camelcase-css@^2.0.1: resolved "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + integrity sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ== + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + camelcase-keys@^6.2.2: version "6.2.2" resolved "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz#5e755d6ba51aa223ec7d3d52f25778210f9dc3c0" @@ -5541,6 +5286,11 @@ camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1: resolved "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== +camelcase@^2.0.0, camelcase@^2.0.1: + version "2.1.1" + resolved "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + integrity sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw== + camelcase@^6.0.0, camelcase@^6.2.0: version "6.3.0" resolved "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" @@ -5561,10 +5311,15 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001464, caniuse-lite@^1.0.30001502: - version "1.0.30001503" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001503.tgz#88b6ff1b2cf735f1f3361dc1a15b59f0561aa398" - integrity sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw== +caniuse-db@^1.0.30000187, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: + version "1.0.30001486" + resolved "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30001486.tgz#d88c0160349553b3f336282742fa9edb06b6c380" + integrity sha512-Uy8+dBzGVklMo5NedR+Qec+t4XjRMehl/76p/shNJ82lu1TNCeg+FF3+AcxkRbMJnVzg2Rz8hod3WIzUVSZCMw== + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001449, caniuse-lite@^1.0.30001464: + version "1.0.30001486" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001486.tgz#56a08885228edf62cbe1ac8980f2b5dae159997e" + integrity sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== capital-case@^1.0.4: version "1.0.4" @@ -5593,7 +5348,7 @@ chalk@5.2.0, chalk@^5.0.0, chalk@^5.0.1, chalk@^5.2.0: resolved "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== -chalk@^1.1.3: +chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: version "1.1.3" resolved "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== @@ -5834,9 +5589,9 @@ ci-info@^3.2.0, ci-info@^3.6.1: integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== cjs-module-lexer@^1.0.0: - version "1.2.3" - resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" - integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== + version "1.2.2" + resolved "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" + integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== clean-stack@^2.0.0: version "2.2.0" @@ -5902,6 +5657,15 @@ clipboardy@^2.3.0: execa "^1.0.0" is-wsl "^2.1.1" +cliui@^3.0.3: + version "3.2.0" + resolved "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w== + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + cliui@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz#511d702c0c4e41ca156d7d0e96021f23e13225b1" @@ -5938,6 +5702,14 @@ clone-deep@4.0.1, clone-deep@^4.0.1: kind-of "^6.0.2" shallow-clone "^3.0.0" +clone-regexp@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.1.tgz#051805cd33173375d82118fc0918606da39fd60f" + integrity sha512-Fcij9IwRW27XedRIJnSOEupS7RVcXtObJXbcUOX93UCLqqOdRpkvzKywOOSizmEK/Is3S/RHX9dLdfo6R1Q1mw== + dependencies: + is-regexp "^1.0.0" + is-supported-regexp-flag "^1.0.0" + clone-response@^1.0.2: version "1.0.3" resolved "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz#af2032aa47816399cf5f0a1d0db902f517abb8c3" @@ -5981,6 +5753,11 @@ coa@^2.0.2: chalk "^2.4.1" q "^1.1.2" +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== + collapse-white-space@^1.0.2: version "1.0.6" resolved "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" @@ -6005,6 +5782,11 @@ color-convert@^2.0.1: dependencies: color-name "~1.1.4" +color-diff@^0.1.3: + version "0.1.7" + resolved "https://registry.npmjs.org/color-diff/-/color-diff-0.1.7.tgz#6db78cd9482a8e459d40821eaf4b503283dcb8e2" + integrity sha512-Tuh3W2d3LdK3E8BhKltCuESgUva+oluFYqvzHg8a3tu5XzO/a4PF4W8islodUcqtiPgPdkg42PzL2bwtOUaJeQ== + color-name@1.1.3: version "1.1.3" resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" @@ -6051,6 +5833,22 @@ colorette@^2.0.19: resolved "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== +colorguard@^1.2.0: + version "1.2.1" + resolved "https://registry.npmjs.org/colorguard/-/colorguard-1.2.1.tgz#249647c9702481d9143384fc9813662311afde98" + integrity sha512-qYVKTg626qpDg4/eBnPXidEPXn5+krbYqHVfyyEFBWV5z3IF4p44HKY/eE2t1ohlcrlIkDgHmFJMfQ8qMLnSFw== + dependencies: + chalk "^1.1.1" + color-diff "^0.1.3" + log-symbols "^1.0.2" + object-assign "^4.0.1" + pipetteur "^2.0.0" + plur "^2.0.0" + postcss "^5.0.4" + postcss-reporter "^1.2.1" + text-table "^0.2.0" + yargs "^1.2.6" + colors@1.4.0: version "1.4.0" resolved "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz#c50491479d4c1bdaed2c9ced32cf7c7dc2360f78" @@ -6391,7 +6189,7 @@ convert-source-map@^0.3.3: resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz#f1d802950af7dd2631a1febe0596550c86ab3190" integrity sha512-+4nRk0k3oEpwUB7/CalD7xE2z4VmtEnnq0GO2IPTkrooTrAhEsWvuLF5iWP1dXrwluki/azwXV1ve7gtYuPldg== -convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: +convert-source-map@^1.6.0, convert-source-map@^1.7.0: version "1.9.0" resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== @@ -6424,17 +6222,17 @@ core-js-compat@3.9.0: browserslist "^4.16.3" semver "7.0.0" -core-js-compat@^3.30.1, core-js-compat@^3.30.2, core-js-compat@^3.8.3: - version "3.31.0" - resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.31.0.tgz#4030847c0766cc0e803dcdfb30055d7ef2064bf1" - integrity sha512-hM7YCu1cU6Opx7MXNu0NuumM0ezNeAeRKadixyiQELWY3vT3De9S4J5ZBMraWV2vZnrE1Cirl0GtFtDtMUXzPw== +core-js-compat@^3.25.1, core-js-compat@^3.8.3: + version "3.30.2" + resolved "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.30.2.tgz#83f136e375babdb8c80ad3c22d67c69098c1dd8b" + integrity sha512-nriW1nuJjUgvkEjIot1Spwakz52V9YkYHZAQG6A1eCgC8AA1p0zngrQEP9R0+V6hji5XilWKG1Bd0YRppmGimA== dependencies: browserslist "^4.21.5" core-js-pure@^3.23.3: - version "3.31.0" - resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.31.0.tgz#052fd9e82fbaaf86457f5db1fadcd06f15966ff2" - integrity sha512-/AnE9Y4OsJZicCzIe97JP5XoPKQJfTuEG43aEVLFJGOJpyqELod+pE6LEl63DfG1Mp8wX97LDaDpy1GmLEUxlg== + version "3.30.2" + resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.30.2.tgz#005a82551f4af3250dcfb46ed360fad32ced114e" + integrity sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg== core-js@^2.4.0: version "2.6.12" @@ -6442,9 +6240,9 @@ core-js@^2.4.0: integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== core-js@^3.22.3, core-js@^3.30.2, core-js@^3.8.3: - version "3.31.0" - resolved "https://registry.npmjs.org/core-js/-/core-js-3.31.0.tgz#4471dd33e366c79d8c0977ed2d940821719db344" - integrity sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ== + version "3.30.2" + resolved "https://registry.npmjs.org/core-js/-/core-js-3.30.2.tgz#6528abfda65e5ad728143ea23f7a14f0dcf503fc" + integrity sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg== core-util-is@~1.0.0: version "1.0.3" @@ -6475,6 +6273,20 @@ cosmiconfig@7.0.0: path-type "^4.0.0" yaml "^1.10.0" +cosmiconfig@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" + integrity sha512-lD04n/6cUdP+MyTyvg34qO5+XzUxS0qIhNVnZON0Ba/LAHN7o/BPIPoXBGq1hNvhWe2slvbsXGhY/bMQw1MsyQ== + dependencies: + graceful-fs "^4.1.2" + js-yaml "^3.4.3" + minimist "^1.2.0" + object-assign "^4.0.1" + os-homedir "^1.0.1" + parse-json "^2.2.0" + pinkie-promise "^2.0.0" + require-from-string "^1.1.0" + cosmiconfig@^6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" @@ -6498,9 +6310,9 @@ cosmiconfig@^7.0.0, cosmiconfig@^7.1.0: yaml "^1.10.0" cosmiconfig@^8.0.0: - version "8.2.0" - resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.2.0.tgz#f7d17c56a590856cd1e7cee98734dca272b0d8fd" - integrity sha512-3rTMnFJA1tCOPwRxtgF4wd7Ab2qvDbL8jX+3smjIbS4HlZBagTlpERbdN7iAbWlrfxE3M8c27kTwTawQ7st+OQ== + version "8.1.3" + resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" + integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== dependencies: import-fresh "^3.2.1" js-yaml "^4.1.0" @@ -6529,11 +6341,11 @@ create-require@^1.1.0: integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== cross-fetch@^3.1.5: - version "3.1.6" - resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.6.tgz#bae05aa31a4da760969756318feeee6e70f15d6c" - integrity sha512-riRvo06crlE8HiqOwIpQhxwdOk4fOeR7FVM/wXoxchFEqMNUjvbs3bfo4OTgMEMHzppd4DxFBDbyySj8Cv781g== + version "3.1.5" + resolved "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" + integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== dependencies: - node-fetch "^2.6.11" + node-fetch "2.6.7" cross-spawn@^5.1.0: version "5.1.0" @@ -6574,6 +6386,11 @@ css-color-keywords@^1.0.0: resolved "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== +css-color-names@0.0.3: + version "0.0.3" + resolved "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.3.tgz#de0cef16f4d8aa8222a320d5b6d7e9bbada7b9f6" + integrity sha512-YuNAhKz60vZZCiFOP73K/EFaPCXZItFH9ScWoIXdzuxLFFkR7PvWv/faeP0scNJpfYcz956RQu5j+LP6cQC+gw== + css-declaration-sorter@^6.3.1: version "6.4.0" resolved "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.0.tgz#630618adc21724484b3e9505bce812def44000ad" @@ -6613,6 +6430,16 @@ css-minimizer-webpack-plugin@^2.0.0: serialize-javascript "^5.0.1" source-map "^0.6.1" +css-rule-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.npmjs.org/css-rule-stream/-/css-rule-stream-1.1.0.tgz#3786e7198983d965a26e31957e09078cbb7705a2" + integrity sha512-qiio/Zkr8I19jh/XuzEkK8OKDQRTrEYaRyIHy4Bwh/tPUe0w8GcQs7r6x24Yc9lT+FbnZFYULxEIXCmaymguUQ== + dependencies: + css-tokenize "^1.0.1" + duplexer2 "0.0.2" + ldjson-stream "^1.2.1" + through2 "^0.6.3" + css-select-base-adapter@^0.1.1: version "0.1.1" resolved "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" @@ -6669,6 +6496,14 @@ css-to-react-native@^3.0.0: css-color-keywords "^1.0.0" postcss-value-parser "^4.0.2" +css-tokenize@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/css-tokenize/-/css-tokenize-1.0.1.tgz#4625cb1eda21c143858b7f81d6803c1d26fc14be" + integrity sha512-gLmmbJdwH9HLY4bcA17lnZ8GgPwEXRbvxBJGHnkiB6gLhRpTzjkjtMIvz7YORGW/Ptv2oMk8b5g+u7mRD6Dd7A== + dependencies: + inherits "^2.0.1" + readable-stream "^1.0.33" + css-tree@1.0.0-alpha.37: version "1.0.0-alpha.37" resolved "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22" @@ -6857,6 +6692,13 @@ csstype@^3.0.2: resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz#1d4bf9d572f11c14031f0436e1c10bc1f571f50b" integrity sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== +currently-unhandled@^0.4.1: + version "0.4.1" + resolved "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" + integrity sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng== + dependencies: + array-find-index "^1.0.1" + d@1, d@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" @@ -6928,7 +6770,7 @@ decamelize-keys@^1.1.0: decamelize "^1.1.0" map-obj "^1.0.0" -decamelize@^1.1.0, decamelize@^1.2.0: +decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== @@ -6952,10 +6794,46 @@ decompress-response@^6.0.0: dependencies: mimic-response "^3.1.0" -dedent@0.7.0, dedent@^0.7.0: - version "0.7.0" - resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" - integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== +dedent@0.7.0, dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA== + +deep-equal@^2.0.5: + version "2.2.1" + resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz#c72ab22f3a7d3503a4ca87dde976fe9978816739" + integrity sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ== + dependencies: + array-buffer-byte-length "^1.0.0" + call-bind "^1.0.2" + es-get-iterator "^1.1.3" + get-intrinsic "^1.2.0" + is-arguments "^1.1.1" + is-array-buffer "^3.0.2" + is-date-object "^1.0.5" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.2" + isarray "^2.0.5" + object-is "^1.1.5" + object-keys "^1.1.1" + object.assign "^4.1.4" + regexp.prototype.flags "^1.5.0" + side-channel "^1.0.4" + which-boxed-primitive "^1.0.2" + which-collection "^1.0.1" + which-typed-array "^1.1.9" + +deep-equal@~1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" + integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== + dependencies: + is-arguments "^1.0.4" + is-date-object "^1.0.1" + is-regex "^1.0.4" + object-is "^1.0.1" + object-keys "^1.1.1" + regexp.prototype.flags "^1.2.0" deep-extend@^0.6.0, deep-extend@~0.6.0: version "0.6.0" @@ -7002,6 +6880,11 @@ define-properties@^1.1.3, define-properties@^1.1.4, define-properties@^1.2.0: has-property-descriptors "^1.0.0" object-keys "^1.1.1" +defined@~1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/defined/-/defined-1.0.1.tgz#c0b9db27bfaffd95d6f61399419b893df0f91ebf" + integrity sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== + del@^6.0.0: version "6.1.1" resolved "https://registry.npmjs.org/del/-/del-6.1.1.tgz#3b70314f1ec0aa325c6b14eb36b95786671edb7a" @@ -7046,11 +6929,6 @@ deprecation@^2.0.0, deprecation@^2.3.1: resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== -dequal@^2.0.3: - version "2.0.3" - resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be" - integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA== - destroy@1.2.0: version "1.2.0" resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" @@ -7138,11 +7016,6 @@ didyoumean@^1.2.1: resolved "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== -diff-sequences@^28.1.1: - version "28.1.1" - resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz#9989dc731266dc2903457a70e996f3a041913ac6" - integrity sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw== - diff-sequences@^29.4.3: version "29.4.3" resolved "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.4.3.tgz#9314bc1fabe09267ffeca9cbafc457d8499a13f2" @@ -7187,6 +7060,24 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" +doiuse@^2.3.0: + version "2.6.0" + resolved "https://registry.npmjs.org/doiuse/-/doiuse-2.6.0.tgz#1892d10b61a9a356addbf2b614933e81f8bb3834" + integrity sha512-tSmlXvzdGTg+6nLibZnRbElSa5QsZWWlj6JimQ3vGEXtILfWLN4Ss/eXfBoIMr0Az2vOQWfnmFegF7b/TI4IBQ== + dependencies: + browserslist "^1.1.1" + caniuse-db "^1.0.30000187" + css-rule-stream "^1.1.0" + duplexer2 "0.0.2" + jsonfilter "^1.1.2" + ldjson-stream "^1.2.1" + lodash "^4.0.0" + multimatch "^2.0.0" + postcss "^5.0.8" + source-map "^0.4.2" + through2 "^0.6.3" + yargs "^3.5.4" + dom-accessibility-api@^0.5.6: version "0.5.16" resolved "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453" @@ -7333,9 +7224,9 @@ dotenv-expand@^5.1.0: integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== dotenv@^16.0.3: - version "16.1.4" - resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.1.4.tgz#67ac1a10cd9c25f5ba604e4e08bc77c0ebe0ca8c" - integrity sha512-m55RtE8AsPeJBpOIFKihEmqUcoVncQIwo7x9U8ZwLEZw9ZpXboz2c+rvog+jUaJvVrZ5kBOeYQBX5+8Aa/OZQw== + version "16.0.3" + resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07" + integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== dotenv@^7.0.0: version "7.0.0" @@ -7352,12 +7243,26 @@ dotenv@~10.0.0: resolved "https://registry.npmjs.org/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== +dotignore@~0.1.2: + version "0.1.2" + resolved "https://registry.npmjs.org/dotignore/-/dotignore-0.1.2.tgz#f942f2200d28c3a76fbdd6f0ee9f3257c8a2e905" + integrity sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw== + dependencies: + minimatch "^3.0.4" + +duplexer2@0.0.2: + version "0.0.2" + resolved "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" + integrity sha512-+AWBwjGadtksxjOQSFDhPNQbed7icNXApT4+2BNpsXzcCBiInq2H9XW0O8sfHFaPmnQRs7cg/P0fAr2IWQSW0g== + dependencies: + readable-stream "~1.1.9" + duplexer3@^0.1.4: version "0.1.5" resolved "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz#0b5e4d7bad5de8901ea4440624c8e1d20099217e" integrity sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA== -duplexer@^0.1.1, duplexer@^0.1.2: +duplexer@^0.1.1, duplexer@^0.1.2, duplexer@~0.1.1: version "0.1.2" resolved "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== @@ -7384,15 +7289,10 @@ ejs@^3.1.7: dependencies: jake "^10.8.5" -electron-to-chromium@^1.4.428: - version "1.4.431" - resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.431.tgz#47990d6e43465d69aa1fbd0abdec43114946edd0" - integrity sha512-m232JTVmCawA2vG+1azVxhKZ9Sv1Q//xxNv5PkP5rWxGgQE8c3CiZFrh8Xnp+d1NmNxlu3QQrGIfdeW5TtXX5w== - -emittery@^0.10.2: - version "0.10.2" - resolved "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz#902eec8aedb8c41938c46e9385e9db7e03182933" - integrity sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw== +electron-to-chromium@^1.2.7, electron-to-chromium@^1.4.284: + version "1.4.388" + resolved "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.388.tgz#ec0d1be823d5b14da56d91ec5c57e84b4624ea45" + integrity sha512-xZ0y4zjWZgp65okzwwt00f2rYibkFPHUv9qBz+Vzn8cB9UXIo9Zc6Dw81LJYhhNt0G/vR1OJEfStZ49NKl0YxQ== emittery@^0.13.1: version "0.13.1" @@ -7445,9 +7345,9 @@ engine.io-client@~6.2.3: xmlhttprequest-ssl "~2.0.0" engine.io-parser@~5.0.3: - version "5.0.7" - resolved "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.7.tgz#ed5eae76c71f398284c578ab6deafd3ba7e4e4f6" - integrity sha512-P+jDFbvK6lE3n1OL+q9KuzdOFWkkZ/cMV9gol/SbVfpyqfvrfrFTOFJ6fQm2VC3PZHlU3QPhVwmbsCnauHF2MQ== + version "5.0.6" + resolved "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.0.6.tgz#7811244af173e157295dec9b2718dfe42a64ef45" + integrity sha512-tjuoZDMAdEhVnSFleYPCtdL2GXwVTGtNjoeJd9IhIG3C1xs9uwxqRNEu5WpnDZCaozwVlK/nuQhpodhXSIMaxw== engine.io@~6.2.1: version "6.2.1" @@ -7465,10 +7365,10 @@ engine.io@~6.2.1: engine.io-parser "~5.0.3" ws "~8.2.3" -enhanced-resolve@^5.15.0, enhanced-resolve@^5.8.3: - version "5.15.0" - resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35" - integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg== +enhanced-resolve@^5.13.0, enhanced-resolve@^5.8.3: + version "5.14.0" + resolved "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.0.tgz#0b6c676c8a3266c99fa281e4433a706f5c0c61c4" + integrity sha512-+DCows0XNwLDcUhbFJPdlQEVnT2zXlCv7hPxemTz86/O+B/hCQ+mb7ydkPKiflpVraqLPCAfu7lDy+hBXueojw== dependencies: graceful-fs "^4.2.4" tapable "^2.2.0" @@ -7579,7 +7479,7 @@ err-code@^2.0.2: resolved "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz#23c2f3b756ffdfc608d30e27c9a941024807e7f9" integrity sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA== -error-ex@^1.3.1: +error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.2" resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== @@ -7638,10 +7538,25 @@ es-array-method-boxes-properly@^1.0.0: resolved "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e" integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA== +es-get-iterator@^1.1.3: + version "1.1.3" + resolved "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" + integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.3" + has-symbols "^1.0.3" + is-arguments "^1.1.1" + is-map "^2.0.2" + is-set "^2.0.2" + is-string "^1.0.7" + isarray "^2.0.5" + stop-iteration-iterator "^1.0.0" + es-module-lexer@^1.2.1: - version "1.3.0" - resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.0.tgz#6be9c9e0b4543a60cd166ff6f8b4e9dae0b0c16f" - integrity sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA== + version "1.2.1" + resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.2.1.tgz#ba303831f63e6a394983fde2f97ad77b22324527" + integrity sha512-9978wrXM50Y4rTMmW5kXIC09ZdXQZqkE4mxhwkd8VbzsGkXGPgV4zWuqQJgCEzYngdo2dYDa0l8xhX4fkSwJSg== es-set-tostringtag@^2.0.1: version "2.0.1" @@ -8071,6 +7986,13 @@ execa@^7.0.0: signal-exit "^3.0.7" strip-final-newline "^3.0.0" +execall@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73" + integrity sha512-/J0Q8CvOvlAdpvhfkD/WnTQ4H1eU0exze2nFGPj/RSC7jpQ0NkKe2r28T5eMkhEEs+fzepMZNy1kVRKNlC04nQ== + dependencies: + clone-regexp "^1.0.0" + exit@^0.1.2: version "0.1.2" resolved "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" @@ -8088,17 +8010,6 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" -expect@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz#90a7c1a124f1824133dd4533cce2d2bdcb6603ec" - integrity sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g== - dependencies: - "@jest/expect-utils" "^28.1.3" - jest-get-type "^28.0.2" - jest-matcher-utils "^28.1.3" - jest-message-util "^28.1.3" - jest-util "^28.1.3" - expect@^29.0.0, expect@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/expect/-/expect-29.5.0.tgz#68c0509156cb2a0adb8865d413b137eeaae682f7" @@ -8110,11 +8021,6 @@ expect@^29.0.0, expect@^29.5.0: jest-message-util "^29.5.0" jest-util "^29.5.0" -exponential-backoff@^3.1.1: - version "3.1.1" - resolved "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz#64ac7526fe341ab18a39016cd22c787d01e00bf6" - integrity sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw== - express-graphql@^0.12.0: version "0.12.0" resolved "https://registry.npmjs.org/express-graphql/-/express-graphql-0.12.0.tgz#58deabc309909ca2c9fe2f83f5fbe94429aa23df" @@ -8272,9 +8178,9 @@ fbjs-css-vars@^1.0.0: integrity sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ== fbjs@^3.0.0: - version "3.0.5" - resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.5.tgz#aa0edb7d5caa6340011790bd9249dbef8a81128d" - integrity sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg== + version "3.0.4" + resolved "https://registry.npmjs.org/fbjs/-/fbjs-3.0.4.tgz#e1871c6bd3083bac71ff2da868ad5067d37716c6" + integrity sha512-ucV0tDODnGV3JCnnkmoszb5lf4bNpzjv80K41wd4k798Etq+UYD0y0TIfalLjZoKgjive6/adkRnszwapiDgBQ== dependencies: cross-fetch "^3.1.5" fbjs-css-vars "^1.0.0" @@ -8282,7 +8188,7 @@ fbjs@^3.0.0: object-assign "^4.1.0" promise "^7.1.1" setimmediate "^1.0.5" - ua-parser-js "^1.0.35" + ua-parser-js "^0.7.30" fd-slicer@~1.1.0: version "1.1.0" @@ -8332,7 +8238,7 @@ file-url@3.0.0: resolved "https://registry.npmjs.org/file-url/-/file-url-3.0.0.tgz#247a586a746ce9f7a8ed05560290968afc262a77" integrity sha512-g872QGsHexznxkIAdK8UiZRe7SkE6kvylShU4Nsj8NvfvZag7S0QuQ4IgvPDkk75HxgjIVDwycFTDAgIiO4nDA== -filelist@^1.0.4: +filelist@^1.0.1: version "1.0.4" resolved "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== @@ -8401,6 +8307,14 @@ find-up@5.0.0, find-up@^5.0.0: locate-path "^6.0.0" path-exists "^4.0.0" +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA== + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + find-up@^2.0.0: version "2.1.0" resolved "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" @@ -8475,6 +8389,11 @@ flatted@^3.1.0: resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== +flatten@^1.0.2: + version "1.0.3" + resolved "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz#c1283ac9f27b368abc1e36d1ff7b04501a30356b" + integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== + flexsearch@^0.3.4: version "0.3.61" resolved "https://registry.npmjs.org/flexsearch/-/flexsearch-0.3.61.tgz#ca65068bfc81e6738a92b55c1036f6ffb30eaed0" @@ -8485,7 +8404,7 @@ follow-redirects@^1.14.0, follow-redirects@^1.15.0: resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz#b460864144ba63f2681096f274c4e57026da2c13" integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA== -for-each@^0.3.3: +for-each@^0.3.3, for-each@~0.3.3: version "0.3.3" resolved "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== @@ -8616,10 +8535,10 @@ fs-minipass@^3.0.0: dependencies: minipass "^5.0.0" -fs-monkey@^1.0.4: - version "1.0.4" - resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.4.tgz#ee8c1b53d3fe8bb7e5d2c5c5dfc0168afdd2f747" - integrity sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ== +fs-monkey@^1.0.3: + version "1.0.3" + resolved "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz#ae3ac92d53bb328efe0e9a1d9541f6ad8d48e2d3" + integrity sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q== fs.realpath@^1.0.0: version "1.0.0" @@ -8661,6 +8580,11 @@ functions-have-names@^1.2.2, functions-have-names@^1.2.3: resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== +gather-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/gather-stream/-/gather-stream-1.0.0.tgz#b33994af457a8115700d410f317733cbe7a0904b" + integrity sha512-NspYMi3rN3EKmMdejUXbtluDYrcRlTEBBFhWzVRZVsOx94OPxlXp0AzyPKyLiT7iaurcoTE/KcHsHP/PowNEaA== + gatsby-cli@^4.25.0: version "4.25.0" resolved "https://registry.npmjs.org/gatsby-cli/-/gatsby-cli-4.25.0.tgz#da76a6a61a97948c6ce07984b33c911554982f51" @@ -9220,13 +9144,12 @@ get-caller-file@^2.0.1, get-caller-file@^2.0.5: integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.1" - resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82" - integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw== + version "1.2.0" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" + integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== dependencies: function-bind "^1.1.1" has "^1.0.3" - has-proto "^1.0.1" has-symbols "^1.0.3" get-package-type@^0.1.0: @@ -9254,6 +9177,16 @@ get-port@^3.2.0: resolved "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz#dd7ce7de187c06c8bf353796ac71e099f0980ebc" integrity sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg== +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw== + +get-stdin@^5.0.0: + version "5.0.1" + resolved "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" + integrity sha512-jZV7n6jGE3Gt7fgSTJoz91Ak5MuTLwMwkoYdjxuJ/AmjIsE1UC03y/IWkZCQGEvVNS9qoRNwy5BCqxImv0FVeA== + get-stream@6.0.0: version "6.0.0" resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" @@ -9370,17 +9303,17 @@ glob@7.1.4: path-is-absolute "^1.0.0" glob@^10.2.2: - version "10.2.7" - resolved "https://registry.npmjs.org/glob/-/glob-10.2.7.tgz#9dd2828cd5bc7bd861e7738d91e7113dda41d7d8" - integrity sha512-jTKehsravOJo8IJxUGfZILnkvVJM/MOfHRs8QcXolVef2zNI9Tqyy5+SeuOAZd3upViEZQLyFpQhYiHLrMUNmA== + version "10.2.3" + resolved "https://registry.npmjs.org/glob/-/glob-10.2.3.tgz#aa6765963fe6c5936d5c2e00943e7af06302a1a7" + integrity sha512-Kb4rfmBVE3eQTAimgmeqc2LwSnN0wIOkkUL6HmxEFxNJ4fHghYHVbFba/HcGcRjE6s9KoMNK3rSOwkL4PioZjg== dependencies: foreground-child "^3.1.0" jackspeak "^2.0.3" - minimatch "^9.0.1" - minipass "^5.0.0 || ^6.0.2" + minimatch "^9.0.0" + minipass "^5.0.0" path-scurry "^1.7.0" -glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0, glob@^7.2.3: +glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0, glob@^7.2.3, glob@~7.2.3: version "7.2.3" resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== @@ -9510,7 +9443,19 @@ globby@^13.1.1, globby@^13.1.3: merge2 "^1.4.1" slash "^4.0.0" -globjoin@^0.1.4: +globby@^5.0.0: + version "5.0.0" + resolved "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz#ebd84667ca0dbb330b99bcfc68eac2bc54370e0d" + integrity sha512-HJRTIH2EeH44ka+LWig+EqT2ONSYpVlNfx6pyd592/VF1TbfljJ7elwie7oSwcViLGqOdWocSdu2txwBF9bjmQ== + dependencies: + array-union "^1.0.1" + arrify "^1.0.0" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +globjoin@^0.1.2, globjoin@^0.1.4: version "0.1.4" resolved "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz#2f4494ac8919e3767c5cbb691e9f463324285d43" integrity sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg== @@ -9704,7 +9649,7 @@ has-yarn@^2.1.0: resolved "https://registry.npmjs.org/has-yarn/-/has-yarn-2.1.0.tgz#137e11354a7b5bf11aa5cb649cf0c6f3ff2b2e77" integrity sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw== -has@^1.0.3: +has@^1.0.3, has@~1.0.3: version "1.0.3" resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== @@ -9869,15 +9814,20 @@ html-element-map@^1.2.0: call-bind "^1.0.2" html-entities@^2.1.0, html-entities@^2.3.3: - version "2.3.6" - resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.3.6.tgz#966391d58e5737c77bca4025e31721b496ab7454" - integrity sha512-9o0+dcpIw2/HxkNuYKxSJUF/MMRZQECK4GnF+oQOmJ83yCVHTWgCH5aOXxK5bozNRmM8wtgryjHD3uloPBDEGw== + version "2.3.3" + resolved "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz#117d7626bece327fc8baace8868fa6f5ef856e46" + integrity sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA== html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== +html-tags@^1.1.1: + version "1.2.0" + resolved "https://registry.npmjs.org/html-tags/-/html-tags-1.2.0.tgz#c78de65b5663aa597989dd2b7ab49200d7e4db98" + integrity sha512-uVteDXUCs08M7QJx0eY6ue7qQztwIfknap81vAtNob2sdEPKa8PjPinx0vxbs2JONPamovZjMvKZWNW44/PBKg== + html-tags@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz#10b30a386085f43cede353cc8fa7cb0deeea668b" @@ -9893,7 +9843,7 @@ html-void-elements@^1.0.0: resolved "https://registry.npmjs.org/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== -htmlparser2@^3.9.1: +htmlparser2@^3.9.0, htmlparser2@^3.9.1: version "3.10.1" resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== @@ -10105,11 +10055,23 @@ imurmurhash@^0.1.4: resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + integrity sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg== + dependencies: + repeating "^2.0.0" + indent-string@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha512-bup+4tap3Hympa+JBJUG7XuOsdNQ6fxt0MHyXMKuLBKn0OqsTfvUxkUrroEX1+B2VsSHvCjiIcZVxRtYa4nllA== + infer-owner@^1.0.4: version "1.0.4" resolved "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" @@ -10123,7 +10085,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: +inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -10217,7 +10179,7 @@ inquirer@^8.2.2, inquirer@^8.2.4: through "^2.3.6" wrap-ansi "^7.0.0" -internal-slot@^1.0.3, internal-slot@^1.0.5: +internal-slot@^1.0.3, internal-slot@^1.0.4, internal-slot@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== @@ -10238,6 +10200,11 @@ invariant@^2.2.2, invariant@^2.2.3, invariant@^2.2.4: dependencies: loose-envify "^1.0.0" +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ== + ip-regex@^4.1.0: version "4.3.0" resolved "https://registry.npmjs.org/ip-regex/-/ip-regex-4.3.0.tgz#687275ab0f57fa76978ff8f4dddc8a23d5990db5" @@ -10253,6 +10220,11 @@ ipaddr.js@1.9.1: resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== +irregular-plurals@^1.0.0: + version "1.4.0" + resolved "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-1.4.0.tgz#2ca9b033651111855412f16be5d77c62a458a766" + integrity sha512-kniTIJmaZYiwa17eTtWIfm0K342seyugl6vuC8DiiyiRAJWAVlLkqGCI0Im0neo0TkXw+pRcKaBPRdcKHnQJ6Q== + is-absolute-url@^2.0.0: version "2.1.0" resolved "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" @@ -10289,6 +10261,14 @@ is-alphanumerical@^1.0.0: is-alphabetical "^1.0.0" is-decimal "^1.0.0" +is-arguments@^1.0.4, is-arguments@^1.1.1: + version "1.1.1" + resolved "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" + integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: version "3.0.2" resolved "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" @@ -10348,13 +10328,13 @@ is-ci@2.0.0, is-ci@^2.0.0: ci-info "^2.0.0" is-core-module@^2.11.0, is-core-module@^2.5.0, is-core-module@^2.8.1, is-core-module@^2.9.0: - version "2.12.1" - resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz#0c0b6885b6f80011c71541ce15c8d66cf5a4f9fd" - integrity sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg== + version "2.12.0" + resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.0.tgz#36ad62f6f73c8253fd6472517a12483cf03e7ec4" + integrity sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ== dependencies: has "^1.0.3" -is-date-object@^1.0.1: +is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== @@ -10386,6 +10366,23 @@ is-extglob@^2.1.1: resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== +is-finite@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" + integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== + is-fullwidth-code-point@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" @@ -10464,6 +10461,11 @@ is-lower-case@^2.0.2: dependencies: tslib "^2.0.3" +is-map@^2.0.1, is-map@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== + is-negative-zero@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" @@ -10528,7 +10530,7 @@ is-promise@^2.2.2: resolved "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== -is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.4: +is-regex@^1.0.4, is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.4, is-regex@~1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== @@ -10536,6 +10538,11 @@ is-regex@^1.0.5, is-regex@^1.1.0, is-regex@^1.1.4: call-bind "^1.0.2" has-tostringtag "^1.0.0" +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + is-relative-url@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/is-relative-url/-/is-relative-url-2.0.0.tgz#72902d7fe04b3d4792e7db15f9db84b7204c9cef" @@ -10562,6 +10569,11 @@ is-root@^2.1.0: resolved "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c" integrity sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg== +is-set@^2.0.1, is-set@^2.0.2: + version "2.0.2" + resolved "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== + is-shared-array-buffer@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" @@ -10608,6 +10620,11 @@ is-subset@^0.1.1: resolved "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" integrity sha512-6Ybun0IkarhmEqxXCNw/C0bna6Zb/TkfUX9UbwJtK6ObwAVCxmAP308WWTHviM/zAqXk05cdhYsUsZeGQh99iw== +is-supported-regexp-flag@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.1.tgz#21ee16518d2c1dd3edd3e9a0d57e50207ac364ca" + integrity sha512-3vcJecUUrpgCqc/ca0aWeNu64UGgxcvO60K/Fkr1N6RSvfGCTU60UKN68JDmKokgba0rFFJs12EnzOQa14ubKQ== + is-symbol@^1.0.2, is-symbol@^1.0.3: version "1.0.4" resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" @@ -10674,6 +10691,11 @@ is-url@^1.2.4: resolved "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" integrity sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww== +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== + is-valid-domain@^0.1.6: version "0.1.6" resolved "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz#3c85469d2938f170c8f82ce6e52df8ad9fca8105" @@ -10688,6 +10710,11 @@ is-valid-path@^0.1.1: dependencies: is-invalid-path "^0.1.0" +is-weakmap@^2.0.1: + version "2.0.1" + resolved "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== + is-weakref@^1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" @@ -10695,6 +10722,14 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" +is-weakset@^2.0.1: + version "2.0.2" + resolved "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" + integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.1.1" + is-whitespace-character@^1.0.0: version "1.0.4" resolved "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" @@ -10731,6 +10766,11 @@ is2@^2.0.6: ip-regex "^4.1.0" is-url "^1.2.4" +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ== + isarray@^2.0.5: version "2.0.5" resolved "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" @@ -10799,37 +10839,29 @@ istanbul-reports@^3.1.3: istanbul-lib-report "^3.0.0" jackspeak@^2.0.3: - version "2.2.1" - resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.1.tgz#655e8cf025d872c9c03d3eb63e8f0c024fef16a6" - integrity sha512-MXbxovZ/Pm42f6cDIDkl3xpwv1AGwObKwfmjs2nQePiy85tP3fatofl3FC1aBsOtP/6fq5SbtgHwWcMsLP+bDw== + version "2.2.0" + resolved "https://registry.npmjs.org/jackspeak/-/jackspeak-2.2.0.tgz#497cbaedc902ec3f31d5d61be804d2364ff9ddad" + integrity sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ== dependencies: "@isaacs/cliui" "^8.0.2" optionalDependencies: "@pkgjs/parseargs" "^0.11.0" jake@^10.8.5: - version "10.8.7" - resolved "https://registry.npmjs.org/jake/-/jake-10.8.7.tgz#63a32821177940c33f356e0ba44ff9d34e1c7d8f" - integrity sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w== + version "10.8.5" + resolved "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz#f2183d2c59382cb274226034543b9c03b8164c46" + integrity sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw== dependencies: async "^3.2.3" chalk "^4.0.2" - filelist "^1.0.4" - minimatch "^3.1.2" + filelist "^1.0.1" + minimatch "^3.0.4" javascript-stringify@^2.0.1: version "2.1.0" resolved "https://registry.npmjs.org/javascript-stringify/-/javascript-stringify-2.1.0.tgz#27c76539be14d8bd128219a2d731b09337904e79" integrity sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg== -jest-changed-files@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.1.3.tgz#d9aeee6792be3686c47cb988a8eaf82ff4238831" - integrity sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA== - dependencies: - execa "^5.0.0" - p-limit "^3.1.0" - jest-changed-files@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.5.0.tgz#e88786dca8bf2aa899ec4af7644e16d9dcf9b23e" @@ -10838,31 +10870,6 @@ jest-changed-files@^29.5.0: execa "^5.0.0" p-limit "^3.1.0" -jest-circus@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.3.tgz#d14bd11cf8ee1a03d69902dc47b6bd4634ee00e4" - integrity sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow== - dependencies: - "@jest/environment" "^28.1.3" - "@jest/expect" "^28.1.3" - "@jest/test-result" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - co "^4.6.0" - dedent "^0.7.0" - is-generator-fn "^2.0.0" - jest-each "^28.1.3" - jest-matcher-utils "^28.1.3" - jest-message-util "^28.1.3" - jest-runtime "^28.1.3" - jest-snapshot "^28.1.3" - jest-util "^28.1.3" - p-limit "^3.1.0" - pretty-format "^28.1.3" - slash "^3.0.0" - stack-utils "^2.0.3" - jest-circus@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-circus/-/jest-circus-29.5.0.tgz#b5926989449e75bff0d59944bae083c9d7fb7317" @@ -10889,24 +10896,6 @@ jest-circus@^29.5.0: slash "^3.0.0" stack-utils "^2.0.3" -jest-cli@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz#558b33c577d06de55087b8448d373b9f654e46b2" - integrity sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ== - dependencies: - "@jest/core" "^28.1.3" - "@jest/test-result" "^28.1.3" - "@jest/types" "^28.1.3" - chalk "^4.0.0" - exit "^0.1.2" - graceful-fs "^4.2.9" - import-local "^3.0.2" - jest-config "^28.1.3" - jest-util "^28.1.3" - jest-validate "^28.1.3" - prompts "^2.0.1" - yargs "^17.3.1" - jest-cli@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-cli/-/jest-cli-29.5.0.tgz#b34c20a6d35968f3ee47a7437ff8e53e086b4a67" @@ -10925,34 +10914,6 @@ jest-cli@^29.5.0: prompts "^2.0.1" yargs "^17.3.1" -jest-config@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz#e315e1f73df3cac31447eed8b8740a477392ec60" - integrity sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ== - dependencies: - "@babel/core" "^7.11.6" - "@jest/test-sequencer" "^28.1.3" - "@jest/types" "^28.1.3" - babel-jest "^28.1.3" - chalk "^4.0.0" - ci-info "^3.2.0" - deepmerge "^4.2.2" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-circus "^28.1.3" - jest-environment-node "^28.1.3" - jest-get-type "^28.0.2" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.3" - jest-runner "^28.1.3" - jest-util "^28.1.3" - jest-validate "^28.1.3" - micromatch "^4.0.4" - parse-json "^5.2.0" - pretty-format "^28.1.3" - slash "^3.0.0" - strip-json-comments "^3.1.1" - jest-config@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-config/-/jest-config-29.5.0.tgz#3cc972faec8c8aaea9ae158c694541b79f3748da" @@ -10981,16 +10942,6 @@ jest-config@^29.5.0: slash "^3.0.0" strip-json-comments "^3.1.1" -jest-diff@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz#948a192d86f4e7a64c5264ad4da4877133d8792f" - integrity sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw== - dependencies: - chalk "^4.0.0" - diff-sequences "^28.1.1" - jest-get-type "^28.0.2" - pretty-format "^28.1.3" - jest-diff@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-diff/-/jest-diff-29.5.0.tgz#e0d83a58eb5451dcc1fa61b1c3ee4e8f5a290d63" @@ -11001,13 +10952,6 @@ jest-diff@^29.5.0: jest-get-type "^29.4.3" pretty-format "^29.5.0" -jest-docblock@^28.1.1: - version "28.1.1" - resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz#6f515c3bf841516d82ecd57a62eed9204c2f42a8" - integrity sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA== - dependencies: - detect-newline "^3.0.0" - jest-docblock@^29.4.3: version "29.4.3" resolved "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.4.3.tgz#90505aa89514a1c7dceeac1123df79e414636ea8" @@ -11015,17 +10959,6 @@ jest-docblock@^29.4.3: dependencies: detect-newline "^3.0.0" -jest-each@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-each/-/jest-each-28.1.3.tgz#bdd1516edbe2b1f3569cfdad9acd543040028f81" - integrity sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g== - dependencies: - "@jest/types" "^28.1.3" - chalk "^4.0.0" - jest-get-type "^28.0.2" - jest-util "^28.1.3" - pretty-format "^28.1.3" - jest-each@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-each/-/jest-each-29.5.0.tgz#fc6e7014f83eac68e22b7195598de8554c2e5c06" @@ -11037,18 +10970,6 @@ jest-each@^29.5.0: jest-util "^29.5.0" pretty-format "^29.5.0" -jest-environment-node@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz#7e74fe40eb645b9d56c0c4b70ca4357faa349be5" - integrity sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A== - dependencies: - "@jest/environment" "^28.1.3" - "@jest/fake-timers" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - jest-mock "^28.1.3" - jest-util "^28.1.3" - jest-environment-node@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.5.0.tgz#f17219d0f0cc0e68e0727c58b792c040e332c967" @@ -11061,35 +10982,11 @@ jest-environment-node@^29.5.0: jest-mock "^29.5.0" jest-util "^29.5.0" -jest-get-type@^28.0.2: - version "28.0.2" - resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz#34622e628e4fdcd793d46db8a242227901fcf203" - integrity sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA== - jest-get-type@^29.4.3: version "29.4.3" resolved "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.4.3.tgz#1ab7a5207c995161100b5187159ca82dd48b3dd5" integrity sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg== -jest-haste-map@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz#abd5451129a38d9841049644f34b034308944e2b" - integrity sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA== - dependencies: - "@jest/types" "^28.1.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 "^28.0.2" - jest-util "^28.1.3" - jest-worker "^28.1.3" - micromatch "^4.0.4" - walker "^1.0.8" - optionalDependencies: - fsevents "^2.3.2" - jest-haste-map@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz#69bd67dc9012d6e2723f20a945099e972b2e94de" @@ -11109,14 +11006,6 @@ jest-haste-map@^29.5.0: optionalDependencies: fsevents "^2.3.2" -jest-leak-detector@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz#a6685d9b074be99e3adee816ce84fd30795e654d" - integrity sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA== - dependencies: - jest-get-type "^28.0.2" - pretty-format "^28.1.3" - jest-leak-detector@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.5.0.tgz#cf4bdea9615c72bac4a3a7ba7e7930f9c0610c8c" @@ -11125,16 +11014,6 @@ jest-leak-detector@^29.5.0: jest-get-type "^29.4.3" pretty-format "^29.5.0" -jest-matcher-utils@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz#5a77f1c129dd5ba3b4d7fc20728806c78893146e" - integrity sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw== - dependencies: - chalk "^4.0.0" - jest-diff "^28.1.3" - jest-get-type "^28.0.2" - pretty-format "^28.1.3" - jest-matcher-utils@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.5.0.tgz#d957af7f8c0692c5453666705621ad4abc2c59c5" @@ -11145,21 +11024,6 @@ jest-matcher-utils@^29.5.0: jest-get-type "^29.4.3" pretty-format "^29.5.0" -jest-message-util@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz#232def7f2e333f1eecc90649b5b94b0055e7c43d" - integrity sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g== - dependencies: - "@babel/code-frame" "^7.12.13" - "@jest/types" "^28.1.3" - "@types/stack-utils" "^2.0.0" - chalk "^4.0.0" - graceful-fs "^4.2.9" - micromatch "^4.0.4" - pretty-format "^28.1.3" - slash "^3.0.0" - stack-utils "^2.0.3" - jest-message-util@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.5.0.tgz#1f776cac3aca332ab8dd2e3b41625435085c900e" @@ -11175,14 +11039,6 @@ jest-message-util@^29.5.0: slash "^3.0.0" stack-utils "^2.0.3" -jest-mock@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz#d4e9b1fc838bea595c77ab73672ebf513ab249da" - integrity sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - jest-mock@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-mock/-/jest-mock-29.5.0.tgz#26e2172bcc71d8b0195081ff1f146ac7e1518aed" @@ -11197,29 +11053,11 @@ jest-pnp-resolver@^1.2.2: resolved "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== -jest-preset-stylelint@^5.0.4: - version "5.0.4" - resolved "https://registry.npmjs.org/jest-preset-stylelint/-/jest-preset-stylelint-5.0.4.tgz#4be121f8e5ce826681e76bf657fccb86c90afc62" - integrity sha512-y9j3kATHB/FIxfKsNZEnK/3GkeVnmyXz2GgtFO5fogMOlZrNf0mvF674kmTaebguvRGn7Gxmd7kqMihwIIgN3A== - -jest-regex-util@^28.0.2: - version "28.0.2" - resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz#afdc377a3b25fb6e80825adcf76c854e5bf47ead" - integrity sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw== - jest-regex-util@^29.4.3: version "29.4.3" resolved "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz#a42616141e0cae052cfa32c169945d00c0aa0bb8" integrity sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg== -jest-resolve-dependencies@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz#8c65d7583460df7275c6ea2791901fa975c1fe66" - integrity sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA== - dependencies: - jest-regex-util "^28.0.2" - jest-snapshot "^28.1.3" - jest-resolve-dependencies@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.5.0.tgz#f0ea29955996f49788bf70996052aa98e7befee4" @@ -11228,21 +11066,6 @@ jest-resolve-dependencies@^29.5.0: jest-regex-util "^29.4.3" jest-snapshot "^29.5.0" -jest-resolve@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.3.tgz#cfb36100341ddbb061ec781426b3c31eb51aa0a8" - integrity sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ== - dependencies: - chalk "^4.0.0" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.3" - jest-pnp-resolver "^1.2.2" - jest-util "^28.1.3" - jest-validate "^28.1.3" - resolve "^1.20.0" - resolve.exports "^1.1.0" - slash "^3.0.0" - jest-resolve@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.5.0.tgz#b053cc95ad1d5f6327f0ac8aae9f98795475ecdc" @@ -11258,33 +11081,6 @@ jest-resolve@^29.5.0: resolve.exports "^2.0.0" slash "^3.0.0" -jest-runner@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz#5eee25febd730b4713a2cdfd76bdd5557840f9a1" - integrity sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA== - dependencies: - "@jest/console" "^28.1.3" - "@jest/environment" "^28.1.3" - "@jest/test-result" "^28.1.3" - "@jest/transform" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - emittery "^0.10.2" - graceful-fs "^4.2.9" - jest-docblock "^28.1.1" - jest-environment-node "^28.1.3" - jest-haste-map "^28.1.3" - jest-leak-detector "^28.1.3" - jest-message-util "^28.1.3" - jest-resolve "^28.1.3" - jest-runtime "^28.1.3" - jest-util "^28.1.3" - jest-watcher "^28.1.3" - jest-worker "^28.1.3" - p-limit "^3.1.0" - source-map-support "0.5.13" - jest-runner@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-runner/-/jest-runner-29.5.0.tgz#6a57c282eb0ef749778d444c1d758c6a7693b6f8" @@ -11312,34 +11108,6 @@ jest-runner@^29.5.0: p-limit "^3.1.0" source-map-support "0.5.13" -jest-runtime@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz#a57643458235aa53e8ec7821949e728960d0605f" - integrity sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw== - dependencies: - "@jest/environment" "^28.1.3" - "@jest/fake-timers" "^28.1.3" - "@jest/globals" "^28.1.3" - "@jest/source-map" "^28.1.2" - "@jest/test-result" "^28.1.3" - "@jest/transform" "^28.1.3" - "@jest/types" "^28.1.3" - chalk "^4.0.0" - cjs-module-lexer "^1.0.0" - collect-v8-coverage "^1.0.0" - execa "^5.0.0" - glob "^7.1.3" - graceful-fs "^4.2.9" - jest-haste-map "^28.1.3" - jest-message-util "^28.1.3" - jest-mock "^28.1.3" - jest-regex-util "^28.0.2" - jest-resolve "^28.1.3" - jest-snapshot "^28.1.3" - jest-util "^28.1.3" - slash "^3.0.0" - strip-bom "^4.0.0" - jest-runtime@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.5.0.tgz#c83f943ee0c1da7eb91fa181b0811ebd59b03420" @@ -11368,35 +11136,6 @@ jest-runtime@^29.5.0: slash "^3.0.0" strip-bom "^4.0.0" -jest-snapshot@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz#17467b3ab8ddb81e2f605db05583d69388fc0668" - integrity sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg== - dependencies: - "@babel/core" "^7.11.6" - "@babel/generator" "^7.7.2" - "@babel/plugin-syntax-typescript" "^7.7.2" - "@babel/traverse" "^7.7.2" - "@babel/types" "^7.3.3" - "@jest/expect-utils" "^28.1.3" - "@jest/transform" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/babel__traverse" "^7.0.6" - "@types/prettier" "^2.1.5" - babel-preset-current-node-syntax "^1.0.0" - chalk "^4.0.0" - expect "^28.1.3" - graceful-fs "^4.2.9" - jest-diff "^28.1.3" - jest-get-type "^28.0.2" - jest-haste-map "^28.1.3" - jest-matcher-utils "^28.1.3" - jest-message-util "^28.1.3" - jest-util "^28.1.3" - natural-compare "^1.4.0" - pretty-format "^28.1.3" - semver "^7.3.5" - jest-snapshot@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.5.0.tgz#c9c1ce0331e5b63cd444e2f95a55a73b84b1e8ce" @@ -11433,18 +11172,6 @@ jest-styled-components@^7.1.1: dependencies: "@adobe/css-tools" "^4.0.1" -jest-util@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz#f4f932aa0074f0679943220ff9cbba7e497028b0" - integrity sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ== - dependencies: - "@jest/types" "^28.1.3" - "@types/node" "*" - chalk "^4.0.0" - ci-info "^3.2.0" - graceful-fs "^4.2.9" - picomatch "^2.2.3" - jest-util@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz#24a4d3d92fc39ce90425311b23c27a6e0ef16b8f" @@ -11457,18 +11184,6 @@ jest-util@^29.5.0: graceful-fs "^4.2.9" picomatch "^2.2.3" -jest-validate@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz#e322267fd5e7c64cea4629612c357bbda96229df" - integrity sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA== - dependencies: - "@jest/types" "^28.1.3" - camelcase "^6.2.0" - chalk "^4.0.0" - jest-get-type "^28.0.2" - leven "^3.1.0" - pretty-format "^28.1.3" - jest-validate@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-validate/-/jest-validate-29.5.0.tgz#8e5a8f36178d40e47138dc00866a5f3bd9916ffc" @@ -11477,23 +11192,9 @@ jest-validate@^29.5.0: "@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" - -jest-watcher@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz#c6023a59ba2255e3b4c57179fc94164b3e73abd4" - integrity sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g== - dependencies: - "@jest/test-result" "^28.1.3" - "@jest/types" "^28.1.3" - "@types/node" "*" - ansi-escapes "^4.2.1" - chalk "^4.0.0" - emittery "^0.10.2" - jest-util "^28.1.3" - string-length "^4.0.1" + jest-get-type "^29.4.3" + leven "^3.1.0" + pretty-format "^29.5.0" jest-watcher@^29.5.0: version "29.5.0" @@ -11527,15 +11228,6 @@ jest-worker@^27.4.5, jest-worker@^27.5.1: merge-stream "^2.0.0" supports-color "^8.0.0" -jest-worker@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz#7e3c4ce3fa23d1bb6accb169e7f396f98ed4bb98" - integrity sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g== - dependencies: - "@types/node" "*" - merge-stream "^2.0.0" - supports-color "^8.0.0" - jest-worker@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz#bdaefb06811bd3384d93f009755014d8acb4615d" @@ -11546,16 +11238,6 @@ jest-worker@^29.5.0: merge-stream "^2.0.0" supports-color "^8.0.0" -jest@^28.1.1: - version "28.1.3" - resolved "https://registry.npmjs.org/jest/-/jest-28.1.3.tgz#e9c6a7eecdebe3548ca2b18894a50f45b36dfc6b" - integrity sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA== - dependencies: - "@jest/core" "^28.1.3" - "@jest/types" "^28.1.3" - import-local "^3.0.2" - jest-cli "^28.1.3" - jest@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/jest/-/jest-29.5.0.tgz#f75157622f5ce7ad53028f2f8888ab53e1f1f24e" @@ -11599,7 +11281,7 @@ js-yaml@4.1.0, js-yaml@^4.1.0: dependencies: argparse "^2.0.1" -js-yaml@^3.10.0, js-yaml@^3.13.1: +js-yaml@^3.10.0, js-yaml@^3.13.1, js-yaml@^3.4.3: version "3.14.1" resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== @@ -11671,6 +11353,13 @@ json-stable-stringify-without-jsonify@^1.0.1: resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== +json-stable-stringify@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.2.tgz#e06f23128e0bbe342dc996ed5a19e28b57b580e0" + integrity sha512-eunSSaEnxV12z+Z73y/j5N37/In40GK4GmsSy+tEHJMxknvqnA7/djeYtAgW0GsWHUfg+847WJjKaEylk2y09g== + dependencies: + jsonify "^0.0.1" + json-stringify-nice@^1.1.4: version "1.1.4" resolved "https://registry.npmjs.org/json-stringify-nice/-/json-stringify-nice-1.1.4.tgz#2c937962b80181d3f317dd39aa323e14f5a60a67" @@ -11707,6 +11396,26 @@ jsonfile@^6.0.1: optionalDependencies: graceful-fs "^4.1.6" +jsonfilter@^1.1.2: + version "1.1.2" + resolved "https://registry.npmjs.org/jsonfilter/-/jsonfilter-1.1.2.tgz#21ef7cedc75193813c75932e96a98be205ba5a11" + integrity sha512-iTsXzY8hmwlPzTw+dsb9Al7hnlGxsWBPDf907Rc10TeuDWRMCTgaZaG6TT6Doy0kp0je3zuEKi7SeFKj+sJsVQ== + dependencies: + JSONStream "^0.8.4" + minimist "^1.1.0" + stream-combiner "^0.2.1" + through2 "^0.6.3" + +jsonify@^0.0.1: + version "0.0.1" + resolved "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz#2aa3111dae3d34a0f151c63f3a45d995d9420978" + integrity sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg== + +jsonparse@0.0.5: + version "0.0.5" + resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz#330542ad3f0a654665b778f3eb2d9a9fa507ac64" + integrity sha512-fw7Q/8gFR8iSekUi9I+HqWIap6mywuoe7hQIg3buTVjuZgALKj4HAmm0X6f+TaL4c9NJbvyFQdaI2ppr5p6dnQ== + jsonparse@^1.2.0, jsonparse@^1.3.1: version "1.3.1" resolved "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" @@ -11783,6 +11492,21 @@ latest-version@5.1.0, latest-version@^5.1.0: dependencies: package-json "^6.3.0" +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw== + dependencies: + invert-kv "^1.0.0" + +ldjson-stream@^1.2.1: + version "1.2.1" + resolved "https://registry.npmjs.org/ldjson-stream/-/ldjson-stream-1.2.1.tgz#91beceda5ac4ed2b17e649fb777e7abfa0189c2b" + integrity sha512-xw/nNEXafuPSLu8NjjG3+atVVw+8U1APZAQylmwQn19Hgw6rC7QjHvP6MupnHWCrzSm9m0xs5QWkCLuRvBPjgQ== + dependencies: + split2 "^0.2.1" + through2 "^0.6.1" + lerna@^6.6.2: version "6.6.2" resolved "https://registry.npmjs.org/lerna/-/lerna-6.6.2.tgz#ad921f913aca4e7307123a598768b6f15ca5804f" @@ -12010,6 +11734,17 @@ load-json-file@6.2.0: strip-bom "^4.0.0" type-fest "^0.6.0" +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + integrity sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A== + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" + load-json-file@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" @@ -12260,11 +11995,18 @@ lodash.upperfirst@^4.3.1: resolved "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" integrity sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== -lodash@4.17.21, lodash@^4.11.2, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@~4.17.0: +lodash@4.17.21, lodash@^4.0.0, lodash@^4.1.0, lodash@^4.11.2, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@~4.17.0: version "4.17.21" resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ== + dependencies: + chalk "^1.0.0" + log-symbols@^4.1.0: version "4.1.0" resolved "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" @@ -12303,6 +12045,14 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +loud-rejection@^1.0.0: + version "1.6.0" + resolved "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" + integrity sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ== + dependencies: + currently-unhandled "^0.4.1" + signal-exit "^3.0.0" + lower-case-first@^1.0.0: version "1.0.2" resolved "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz#e5da7c26f29a7073be02d52bac9980e5922adfa1" @@ -12374,10 +12124,10 @@ lru-cache@^7.4.4, lru-cache@^7.5.1, lru-cache@^7.7.1: resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== -lru-cache@^9.1.1: - version "9.1.2" - resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.2.tgz#255fdbc14b75589d6d0e73644ca167a8db506835" - integrity sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ== +lru-cache@^9.0.0: + version "9.1.1" + resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-9.1.1.tgz#c58a93de58630b688de39ad04ef02ef26f1902f1" + integrity sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A== lru-queue@^0.1.0: version "0.1.0" @@ -12406,7 +12156,7 @@ make-error@^1.1.1: resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== -make-fetch-happen@^10.0.6: +make-fetch-happen@^10.0.3, make-fetch-happen@^10.0.6: version "10.2.1" resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz#f5e3835c5e9817b617f2770870d9492d28678164" integrity sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w== @@ -12428,7 +12178,7 @@ make-fetch-happen@^10.0.6: socks-proxy-agent "^7.0.0" ssri "^9.0.0" -make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.0.3, make-fetch-happen@^11.1.1: +make-fetch-happen@^11.0.0, make-fetch-happen@^11.0.1, make-fetch-happen@^11.1.0: version "11.1.1" resolved "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-11.1.1.tgz#85ceb98079584a9523d4bf71d32996e7e208549f" integrity sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w== @@ -12475,7 +12225,7 @@ map-cache@^0.2.0: resolved "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== -map-obj@^1.0.0: +map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" resolved "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== @@ -12614,11 +12364,11 @@ mem@^8.1.1: mimic-fn "^3.1.0" memfs@^3.1.2, memfs@^3.2.2: - version "3.5.3" - resolved "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz#d9b40fe4f8d5788c5f895bda804cd0d9eeee9f3b" - integrity sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw== + version "3.5.1" + resolved "https://registry.npmjs.org/memfs/-/memfs-3.5.1.tgz#f0cd1e2bfaef58f6fe09bfb9c2288f07fea099ec" + integrity sha512-UWbFJKvj5k+nETdteFndTpYxdeTMox/ULeqX5k/dpaQJCCFmj5EeKv3dBcyO2xmkRAx2vppRu5dVG7SOtsGOzA== dependencies: - fs-monkey "^1.0.4" + fs-monkey "^1.0.3" memoizee@^0.4.15: version "0.4.15" @@ -12634,6 +12384,22 @@ memoizee@^0.4.15: next-tick "^1.1.0" timers-ext "^0.1.7" +meow@^3.3.0: + version "3.7.0" + resolved "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + integrity sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA== + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + meow@^8.0.0: version "8.1.2" resolved "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897" @@ -12777,7 +12543,7 @@ minimatch@3.0.5: dependencies: brace-expansion "^1.1.7" -minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: +minimatch@^3.0.0, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -12805,10 +12571,10 @@ minimatch@^8.0.2: dependencies: brace-expansion "^2.0.1" -minimatch@^9.0.0, minimatch@^9.0.1: - version "9.0.1" - resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.1.tgz#8a555f541cf976c622daf078bb28f29fb927c253" - integrity sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w== +minimatch@^9.0.0: + version "9.0.0" + resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.0.tgz#bfc8e88a1c40ffd40c172ddac3decb8451503b56" + integrity sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== dependencies: brace-expansion "^2.0.1" @@ -12821,7 +12587,7 @@ minimist-options@4.1.0: is-plain-obj "^1.1.0" kind-of "^6.0.3" -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: +minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6, minimist@~1.2.7: version "1.2.8" resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -12901,11 +12667,6 @@ minipass@^5.0.0: resolved "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== -"minipass@^5.0.0 || ^6.0.2": - version "6.0.2" - resolved "https://registry.npmjs.org/minipass/-/minipass-6.0.2.tgz#542844b6c4ce95b202c0995b0a471f1229de4c81" - integrity sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w== - minizlib@^2.1.1, minizlib@^2.1.2: version "2.1.2" resolved "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" @@ -12995,9 +12756,9 @@ msgpackr-extract@^3.0.2: "@msgpackr-extract/msgpackr-extract-win32-x64" "3.0.2" msgpackr@^1.5.4: - version "1.9.5" - resolved "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.5.tgz#ac548c5f4546db895e84e46d39d813be961dc527" - integrity sha512-/IJ3cFSN6Ci3eG2wLhbFEL6GT63yEaoN/R5My2QkV6zro+OJaVRLPlwvxY7EtHYSmDlQpk8stvOQTL2qJFkDRg== + version "1.9.1" + resolved "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.1.tgz#4375d705232b721bedb44a3993e7aa8a6f959502" + integrity sha512-jJdrNH8tzfCtT0rjPFryBXjRDQE7rqfLkah4/8B4gYa7NNZYFBcGxqWBtfQpGC+oYyBwlkj3fARk4aooKNPHxg== optionalDependencies: msgpackr-extract "^3.0.2" @@ -13025,6 +12786,16 @@ multimatch@5.0.0: arrify "^2.0.1" minimatch "^3.0.4" +multimatch@^2.0.0, multimatch@^2.1.0: + version "2.1.0" + resolved "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" + integrity sha512-0mzK8ymiWdehTBiJh0vClAzGyQbdtyWqzSVx//EK4N/D+599RFlGfTAsKw2zMSABtDG9C6Ul2+t8f2Lbdjf5mA== + dependencies: + array-differ "^1.0.0" + array-union "^1.0.1" + arrify "^1.0.0" + minimatch "^3.0.0" + mute-stream@0.0.8, mute-stream@~0.0.4: version "0.0.8" resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" @@ -13108,9 +12879,9 @@ no-case@^3.0.4: tslib "^2.0.3" node-abi@^3.3.0: - version "3.45.0" - resolved "https://registry.npmjs.org/node-abi/-/node-abi-3.45.0.tgz#f568f163a3bfca5aacfce1fbeee1fa2cc98441f5" - integrity sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ== + version "3.40.0" + resolved "https://registry.npmjs.org/node-abi/-/node-abi-3.40.0.tgz#51d8ed44534f70ff1357dfbc3a89717b1ceac1b4" + integrity sha512-zNy02qivjjRosswoYmPi8hIKJRr8MpQyeKT6qlcq/OnOgA3Rhoae+IYOqsM9V5+JnHWmxKnWOT2GxvtqdtOCXA== dependencies: semver "^7.3.5" @@ -13159,15 +12930,14 @@ node-gyp-build@^4.3.0: integrity sha512-NTZVKn9IylLwUzaKjkas1e4u2DLNcV4rdYagA4PWdPwW87Bi7z+BznyKSRwS/761tV/lzCGXplWsiaMjLqP2zQ== node-gyp@^9.0.0: - version "9.4.0" - resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-9.4.0.tgz#2a7a91c7cba4eccfd95e949369f27c9ba704f369" - integrity sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg== + version "9.3.1" + resolved "https://registry.npmjs.org/node-gyp/-/node-gyp-9.3.1.tgz#1e19f5f290afcc9c46973d68700cbd21a96192e4" + integrity sha512-4Q16ZCqq3g8awk6UplT7AuxQ35XN4R/yf/+wSAwcBUAjg7l58RTactWaP8fIDTi0FzI7YcVLujwExakZlfWkXg== dependencies: env-paths "^2.2.0" - exponential-backoff "^3.1.1" glob "^7.1.4" graceful-fs "^4.2.6" - make-fetch-happen "^11.0.3" + make-fetch-happen "^10.0.3" nopt "^6.0.0" npmlog "^6.0.0" rimraf "^3.0.2" @@ -13212,10 +12982,10 @@ node-plop@^0.31.1: title-case "^3.0.3" upper-case "^2.0.2" -node-releases@^2.0.12: - version "2.0.12" - resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz#35627cc224a23bfb06fb3380f2b3afaaa7eb1039" - integrity sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ== +node-releases@^2.0.8: + version "2.0.10" + resolved "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz#c311ebae3b6a148c89b1813fd7c4d3c024ef537f" + integrity sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w== nopt@^6.0.0: version "6.0.0" @@ -13231,7 +13001,7 @@ nopt@^7.0.0: dependencies: abbrev "^2.0.0" -normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: +normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.5.0: version "2.5.0" resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== @@ -13288,6 +13058,11 @@ normalize-range@^0.1.2: resolved "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== +normalize-selector@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" + integrity sha512-dxvWdI8gw6eAvk9BlPffgEoGfM7AdijoCwOEJge3e3ulT2XLgmU7KvvxprOaCu05Q1uGRHmOhHe1r6emZoKyFw== + normalize-url@^4.1.0: version "4.5.1" resolved "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz#0dd90cf1288ee1d1313b87081c9a5932ee48518a" @@ -13329,7 +13104,7 @@ npm-normalize-package-bin@^2.0.0: resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz#9447a1adaaf89d8ad0abe24c6c84ad614a675fff" integrity sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ== -npm-normalize-package-bin@^3.0.0, npm-normalize-package-bin@^3.0.1: +npm-normalize-package-bin@^3.0.0: version "3.0.1" resolved "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz#25447e32a9a7de1f51362c61a559233b89947832" integrity sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ== @@ -13497,6 +13272,16 @@ nullthrows@^1.1.1: resolved "https://registry.npmjs.org/nullthrows/-/nullthrows-1.1.1.tgz#7818258843856ae971eae4208ad7d7eb19a431b1" integrity sha512-2vPPEi+Z7WqML2jZYddDIfy5Dqb0r2fze2zTxNNknZaFpVHU3mFB3R+DWeJWGVx0ecvttSGlJTI+WG+8Z4cDWw== +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + integrity sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg== + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== + nx@15.9.4, "nx@>=15.5.2 < 16": version "15.9.4" resolved "https://registry.npmjs.org/nx/-/nx-15.9.4.tgz#1075bc33fe8ee6c6546c21ec6ffcfd2e000946c6" @@ -13553,12 +13338,12 @@ object-assign@^4, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1 resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== -object-inspect@^1.12.3, object-inspect@^1.7.0, object-inspect@^1.9.0: +object-inspect@^1.12.3, object-inspect@^1.7.0, object-inspect@^1.9.0, object-inspect@~1.12.3: version "1.12.3" resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== -object-is@^1.0.2, object-is@^1.1.2, object-is@^1.1.5: +object-is@^1.0.1, object-is@^1.0.2, object-is@^1.1.2, object-is@^1.1.5: version "1.1.5" resolved "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== @@ -13671,6 +13456,11 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0: dependencies: wrappy "1" +onecolor@^3.0.4: + version "3.1.0" + resolved "https://registry.npmjs.org/onecolor/-/onecolor-3.1.0.tgz#b72522270a49569ac20d244b3cd40fe157fda4d2" + integrity sha512-YZSypViXzu3ul5LMu/m6XjJ9ol8qAy9S2VjHl5E6UlhUH1KGKWabyEJifn0Jjpw23bYDzC2ucKMPGiH5kfwSGQ== + onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" @@ -13735,9 +13525,9 @@ ora@^5.4.1: wcwidth "^1.0.1" ora@^6.0.1: - version "6.3.1" - resolved "https://registry.npmjs.org/ora/-/ora-6.3.1.tgz#a4e9e5c2cf5ee73c259e8b410273e706a2ad3ed6" - integrity sha512-ERAyNnZOfqM+Ao3RAvIXkYh5joP220yf59gVe2X/cI6SiCxIdi4c9HZKZD8R6q/RDXEje1THBju6iExiSsgJaQ== + version "6.3.0" + resolved "https://registry.npmjs.org/ora/-/ora-6.3.0.tgz#a314600999f514a989a0904f5c17c8b7c1f7c878" + integrity sha512-1/D8uRFY0ay2kgBpmAwmSA404w4OoPVhHMqRqtjvrcK/dnzcEZxMJ+V4DUbyICu8IIVRclHcOf5wlD1tMY4GUQ== dependencies: chalk "^5.0.0" cli-cursor "^4.0.0" @@ -13754,6 +13544,18 @@ ordered-binary@^1.2.4: resolved "https://registry.npmjs.org/ordered-binary/-/ordered-binary-1.4.0.tgz#6bb53d44925f3b8afc33d1eed0fa15693b211389" integrity sha512-EHQ/jk4/a9hLupIKxTfUsQRej1Yd/0QLQs3vGvIqg5ZtCYSzNhkzHoZc7Zf4e4kUlDaC3Uw8Q/1opOLNN2OKRQ== +os-homedir@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ== + +os-locale@^1.4.0: + version "1.4.0" + resolved "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz#20f9f17ae29ed345e8bde583b13d2009803c14d9" + integrity sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g== + dependencies: + lcid "^1.0.0" + os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -13948,9 +13750,9 @@ pacote@15.1.1: tar "^6.1.11" pacote@^15.0.0, pacote@^15.0.8: - version "15.2.0" - resolved "https://registry.npmjs.org/pacote/-/pacote-15.2.0.tgz#0f0dfcc3e60c7b39121b2ac612bf8596e95344d3" - integrity sha512-rJVZeIwHTUta23sIZgEIM62WYwbmGbThdbnkt81ravBplQv+HjyroqnLRNH2+sLJHcGZmLRmhPwACqhfTcOmnA== + version "15.1.3" + resolved "https://registry.npmjs.org/pacote/-/pacote-15.1.3.tgz#4c0e7fb5e7ab3b27fb3f86514b451ad4c4f64e9d" + integrity sha512-aRts8cZqxiJVDitmAh+3z+FxuO3tLNWEmwDRPEpDDiZJaRz06clP4XX112ynMT5uF0QNoMPajBBHnaStUEPJXA== dependencies: "@npmcli/git" "^4.0.0" "@npmcli/installed-package-contents" "^2.0.1" @@ -14045,6 +13847,13 @@ parse-filepath@^1.0.2: map-cache "^0.2.0" path-root "^0.1.1" +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ== + dependencies: + error-ex "^1.2.0" + parse-json@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" @@ -14155,6 +13964,13 @@ path-case@^3.0.4: dot-case "^3.0.4" tslib "^2.0.3" +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ== + dependencies: + pinkie-promise "^2.0.0" + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -14208,18 +14024,27 @@ path-root@^0.1.1: path-root-regex "^0.1.0" path-scurry@^1.6.1, path-scurry@^1.7.0: - version "1.9.2" - resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.9.2.tgz#90f9d296ac5e37e608028e28a447b11d385b3f63" - integrity sha512-qSDLy2aGFPm8i4rsbHd4MNyTcrzHFsLQykrtbuGRknZZCBBVXSv2tSCDN2Cg6Rt/GFRw8GoW9y9Ecw5rIPG1sg== + version "1.7.0" + resolved "https://registry.npmjs.org/path-scurry/-/path-scurry-1.7.0.tgz#99c741a2cfbce782294a39994d63748b5a24f6db" + integrity sha512-UkZUeDjczjYRE495+9thsgcVgsaCPkaw80slmfVFgllxY+IO8ubTsOpFVjDPROBqJdHfVPUFRHPBV/WciOVfWg== dependencies: - lru-cache "^9.1.1" - minipass "^5.0.0 || ^6.0.2" + lru-cache "^9.0.0" + minipass "^5.0.0" path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + integrity sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg== + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + path-type@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" @@ -14267,7 +14092,7 @@ picocolors@^1.0.0: resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.1: +picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3, picomatch@^2.3.0, picomatch@^2.3.1: version "2.3.1" resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== @@ -14282,7 +14107,7 @@ pify@5.0.0, pify@^5.0.0: resolved "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== -pify@^2.3.0: +pify@^2.0.0, pify@^2.3.0: version "2.3.0" resolved "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== @@ -14297,6 +14122,26 @@ pify@^4.0.1: resolved "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw== + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg== + +pipetteur@^2.0.0: + version "2.0.3" + resolved "https://registry.npmjs.org/pipetteur/-/pipetteur-2.0.3.tgz#1955760959e8d1a11cb2a50ec83eec470633e49f" + integrity sha512-NIQqkmWwHApROleJH8qVRy2kap23Ev1nIUdAVJNLc3yoYe65Zz2RbBkZAYCAD20dt0DTSbP5yYtd7stUa6YlYw== + dependencies: + onecolor "^3.0.4" + synesthesia "^1.0.1" + pirates@^4.0.4: version "4.0.5" resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz#feec352ea5c3268fb23a37c702ab1699f35a5f3b" @@ -14342,6 +14187,13 @@ plop@^3.1.2: ora "^6.0.1" v8flags "^4.0.0" +plur@^2.0.0, plur@^2.1.2: + version "2.1.2" + resolved "https://registry.npmjs.org/plur/-/plur-2.1.2.tgz#7482452c1a0f508e3e344eaec312c91c29dc655a" + integrity sha512-WhcHk576xg9y/iv6RWOuroZgsqvCbJN+XGvAypCJwLAYs2iWDp5LUmvaCdV6JR2O0SMBf8l6p7A94AyLCFVMlQ== + dependencies: + irregular-plurals "^1.0.0" + postcss-base64@^0.7.1: version "0.7.1" resolved "https://registry.npmjs.org/postcss-base64/-/postcss-base64-0.7.1.tgz#94a7f65b5d80641b6068933ddf31dad8471caf6c" @@ -14455,6 +14307,13 @@ postcss-flexbugs-fixes@^5.0.2: resolved "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-5.0.2.tgz#2028e145313074fc9abe276cb7ca14e5401eb49d" integrity sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ== +postcss-less@^0.14.0: + version "0.14.0" + resolved "https://registry.npmjs.org/postcss-less/-/postcss-less-0.14.0.tgz#c631b089c6cce422b9a10f3a958d2bedd3819324" + integrity sha512-IWbNLrH6vk7vQmwbFp7gY4BlDwWpWsDrkS+V4TUzDOhY2nNzXP5QdxrZdr4Ss0uigxMKaXRLSWp7Kz8qhBSSsg== + dependencies: + postcss "^5.0.21" + postcss-loader@^5.3.0: version "5.3.0" resolved "https://registry.npmjs.org/postcss-loader/-/postcss-loader-5.3.0.tgz#1657f869e48d4fdb018a40771c235e499ee26244" @@ -14575,9 +14434,9 @@ postcss-modules-extract-imports@^3.0.0: integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== postcss-modules-local-by-default@^4.0.0: - version "4.0.3" - resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz#b08eb4f083050708998ba2c6061b50c2870ca524" - integrity sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA== + version "4.0.0" + resolved "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" + integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== dependencies: icss-utils "^5.0.0" postcss-selector-parser "^6.0.2" @@ -14768,6 +14627,16 @@ postcss-reduce-transforms@^6.0.0: dependencies: postcss-value-parser "^4.2.0" +postcss-reporter@^1.2.1, postcss-reporter@^1.3.0, postcss-reporter@^1.3.3: + version "1.4.1" + resolved "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-1.4.1.tgz#c136f0a5b161915f379dd3765c61075f7e7b9af2" + integrity sha512-h9yLwoenfn2GZFINc42nCJInko4rZom3Ud0aEQhOQLa3PlgOUbfQH7/yEwVQLUqX84BwX3ekcwUDic/mpNTx9w== + dependencies: + chalk "^1.0.0" + lodash "^4.1.0" + log-symbols "^1.0.2" + postcss "^5.0.0" + postcss-reporter@^7.0.5: version "7.0.5" resolved "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.5.tgz#e55bd0fdf8d17e4f25fb55e9143fcd79349a2ceb" @@ -14786,15 +14655,31 @@ postcss-safe-parser@^6.0.0: resolved "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz#bb4c29894171a94bc5c996b9a30317ef402adaa1" integrity sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== +postcss-scss@^0.1.3: + version "0.1.9" + resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-0.1.9.tgz#7606caff64bb4b34b7605ab749574cf78d886b08" + integrity sha512-FkLd8Pxci394edesXqewjAd6eMnYGUPK5bgkYbYHX7YPeJDcuaKMuHnXsd0i3tnXJOLTuX+L+m3edda1IKMrbQ== + dependencies: + postcss "^5.1.0" + postcss-scss@^4.0.2, postcss-scss@^4.0.6: version "4.0.6" resolved "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.6.tgz#5d62a574b950a6ae12f2aa89b60d63d9e4432bfd" integrity sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ== +postcss-selector-parser@^2.0.0: + version "2.2.3" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz#f9437788606c3c9acee16ffe8d8b16297f27bb90" + integrity sha512-3pqyakeGhrO0BQ5+/tGTfvi5IAUAhHRayGK8WFSu06aEv2BmHoXw/Mhb+w7VY5HERIuC+QoUI7wgrCcq2hqCVA== + dependencies: + flatten "^1.0.2" + indexes-of "^1.0.1" + uniq "^1.0.1" + postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.11, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.7, postcss-selector-parser@^6.0.9: - version "6.0.13" - resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz#d05d8d76b1e8e173257ef9d60b706a8e5e99bf1b" - integrity sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ== + version "6.0.12" + resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.12.tgz#2efae5ffab3c8bfb2b7fbf0c426e3bca616c4abb" + integrity sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -14829,6 +14714,11 @@ postcss-unique-selectors@^6.0.0: dependencies: postcss-selector-parser "^6.0.5" +postcss-value-parser@^3.1.1, postcss-value-parser@^3.2.3: + version "3.3.1" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: version "4.2.0" resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" @@ -14843,7 +14733,7 @@ postcss@7.0.36: source-map "^0.6.1" supports-color "^6.1.0" -postcss@^5.0.12: +postcss@^5.0.0, postcss@^5.0.12, postcss@^5.0.18, postcss@^5.0.20, postcss@^5.0.21, postcss@^5.0.4, postcss@^5.0.8, postcss@^5.1.0, postcss@^5.2.0, postcss@^5.2.16: version "5.2.18" resolved "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5" integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg== @@ -14862,9 +14752,9 @@ postcss@^7.0.14: source-map "^0.6.1" postcss@^8.2.15, postcss@^8.2.9, postcss@^8.3.11, postcss@^8.4.19, postcss@^8.4.23, postcss@^8.4.4: - version "8.4.24" - resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz#f714dba9b2284be3cc07dbd2fc57ee4dc972d2df" - integrity sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg== + version "8.4.23" + resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.23.tgz#df0aee9ac7c5e53e1075c24a3613496f9e6552ab" + integrity sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== dependencies: nanoid "^3.3.6" picocolors "^1.0.0" @@ -14898,7 +14788,7 @@ prepend-http@^2.0.0: resolved "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897" integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA== -prettier@^2, prettier@^2.8.8: +prettier@^2.8.8: version "2.8.8" resolved "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== @@ -14925,16 +14815,6 @@ pretty-format@29.4.3: ansi-styles "^5.0.0" react-is "^18.0.0" -pretty-format@^28.1.3: - version "28.1.3" - resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz#c9fba8cedf99ce50963a11b27d982a9ae90970d5" - integrity sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q== - dependencies: - "@jest/schemas" "^28.1.3" - ansi-regex "^5.0.1" - ansi-styles "^5.0.0" - react-is "^18.0.0" - pretty-format@^29.0.0, pretty-format@^29.5.0: version "29.5.0" resolved "https://registry.npmjs.org/pretty-format/-/pretty-format-29.5.0.tgz#283134e74f70e2e3e7229336de0e4fce94ccde5a" @@ -15094,10 +14974,10 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -punycode@^1.4.1: - version "1.4.1" - resolved "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" - integrity sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ== +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw== punycode@^2.1.0, punycode@^2.1.1: version "2.3.0" @@ -15138,13 +15018,6 @@ qs@6.11.0: dependencies: side-channel "^1.0.4" -qs@^6.11.0: - version "6.11.2" - resolved "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - query-string@^6.14.1: version "6.14.1" resolved "https://registry.npmjs.org/query-string/-/query-string-6.14.1.tgz#7ac2dca46da7f309449ba0f86b1fd28255b0c86a" @@ -15155,6 +15028,11 @@ query-string@^6.14.1: split-on-first "^1.0.0" strict-uri-encode "^2.0.0" +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" @@ -15285,9 +15163,9 @@ react-error-overlay@^6.0.11: integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg== react-fast-compare@^3.1.1: - version "3.2.2" - resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz#929a97a532304ce9fee4bcae44234f1ce2c21d49" - integrity sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ== + version "3.2.1" + resolved "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.1.tgz#53933d9e14f364281d6cba24bfed7a4afb808b5f" + integrity sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg== react-helmet@^6.1.0: version "6.1.0" @@ -15384,6 +15262,13 @@ read-cmd-shim@^4.0.0: resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-4.0.0.tgz#640a08b473a49043e394ae0c7a34dd822c73b9bb" integrity sha512-yILWifhaSEEytfXI76kB9xEEiG1AiozaCJZ83A87ytjRiN+jVibXjedjCRNjoZviinhG+4UkalO3mWTd8u5O0Q== +read-file-stdin@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/read-file-stdin/-/read-file-stdin-0.2.1.tgz#25eccff3a153b6809afacb23ee15387db9e0ee61" + integrity sha512-dAqysQ4kfj9m5aejZOPr+aRGXZJXdLkMOLZ3BXMwMBQHiO+aylGBFJPh88AYPQrOf+D43F4Uc2oUIW9kBlItLA== + dependencies: + gather-stream "^1.0.0" + read-package-json-fast@^2.0.3: version "2.0.3" resolved "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-2.0.3.tgz#323ca529630da82cb34b36cc0b996693c98c2b83" @@ -15421,15 +15306,23 @@ read-package-json@^5.0.0: npm-normalize-package-bin "^2.0.0" read-package-json@^6.0.0: - version "6.0.4" - resolved "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz#90318824ec456c287437ea79595f4c2854708836" - integrity sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw== + version "6.0.3" + resolved "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.3.tgz#726116b75e00eac2075240995f05681af4ca7122" + integrity sha512-4QbpReW4kxFgeBQ0vPAqh2y8sXEB3D4t3jsXbJKIhBiF80KT6XRo45reqwtftju5J6ru1ax06A2Gb/wM1qCOEQ== dependencies: glob "^10.2.2" json-parse-even-better-errors "^3.0.0" normalize-package-data "^5.0.0" npm-normalize-package-bin "^3.0.0" +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + integrity sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A== + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + read-pkg-up@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" @@ -15447,6 +15340,15 @@ read-pkg-up@^7.0.1: read-pkg "^5.2.0" type-fest "^0.8.1" +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + integrity sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ== + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + read-pkg@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" @@ -15482,6 +15384,26 @@ readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stre string_decoder "^1.1.1" util-deprecate "^1.0.1" +"readable-stream@>=1.0.33-1 <1.1.0-0": + version "1.0.34" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + integrity sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^1.0.33, readable-stream@~1.1.9: + version "1.1.14" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + integrity sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + readable-stream@^2.2.2, readable-stream@~2.3.6: version "2.3.8" resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" @@ -15533,6 +15455,14 @@ recursive-readdir@^2.2.2: dependencies: minimatch "^3.0.5" +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + integrity sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g== + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + redent@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f" @@ -15597,7 +15527,7 @@ regex-parser@^2.2.11: resolved "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== -regexp.prototype.flags@^1.4.3: +regexp.prototype.flags@^1.2.0, regexp.prototype.flags@^1.4.3, regexp.prototype.flags@^1.5.0: version "1.5.0" resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz#fe7ce25e7e4cca8db37b6634c8a2c7009199b9cb" integrity sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA== @@ -15779,6 +15709,13 @@ repeat-string@^1.5.2, repeat-string@^1.5.4: resolved "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A== + dependencies: + is-finite "^1.0.0" + replace-ext@1.0.0: version "1.0.0" resolved "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" @@ -15806,6 +15743,11 @@ require-directory@^2.1.1: resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== +require-from-string@^1.1.0: + version "1.2.1" + resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" + integrity sha512-H7AkJWMobeskkttHyhTVtS0fxpFLjxhbfMa6Bk3wimP7sdPRGL3EyCg3sAQenFfAe+xQ+oAc85Nmtvq0ROM83Q== + require-from-string@^2.0.2: version "2.0.2" resolved "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" @@ -15851,6 +15793,11 @@ resolve-from@5.0.0, resolve-from@^5.0.0: resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== +resolve-from@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz#9480ab20e94ffa1d9e80a804c7ea147611966b57" + integrity sha512-qpFcKaXsq8+oRoLilkwyc7zHGF5i9Q2/25NIgLQQ/+VVv9rU4qvr6nXVAw1DsnXJyQkZsR4Ytfbtg5ehfcUssQ== + resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" @@ -15884,17 +15831,12 @@ resolve-url@^0.2.1: resolved "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg== -resolve.exports@^1.1.0: - version "1.1.1" - resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz#05cfd5b3edf641571fd46fa608b610dda9ead999" - integrity sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ== - resolve.exports@^2.0.0: version "2.0.2" resolved "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== -resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.3.2: +resolve@^1.10.0, resolve@^1.14.2, resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.1, resolve@^1.3.2, resolve@~1.22.1: version "1.22.2" resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz#0ed0943d4e301867955766c9f3e1ae6d01c6845f" integrity sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== @@ -15942,6 +15884,13 @@ restore-cursor@^4.0.0: onetime "^5.1.0" signal-exit "^3.0.2" +resumer@~0.0.0: + version "0.0.0" + resolved "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz#f1e8f461e4064ba39e82af3cdc2a8c893d076759" + integrity sha512-Fn9X8rX8yYF4m81rZCK/5VmrmsSbqS/i3rDLl6ZZHAXgC2nTAx3dhwG8q8odP/RmdLa2YrybDJaAMg+X1ajY3w== + dependencies: + through "~2.3.4" + ret@~0.1.10: version "0.1.15" resolved "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" @@ -16084,9 +16033,9 @@ sass-loader@^10.1.1: semver "^7.3.2" sass@^1.49.7, sass@^1.62.1: - version "1.63.4" - resolved "https://registry.npmjs.org/sass/-/sass-1.63.4.tgz#caf60643321044c61f6a0fe638a07abbd31cfb5d" - integrity sha512-Sx/+weUmK+oiIlI+9sdD0wZHsqpbgQg8wSwSnGBjwb5GwqFhYNwwnI+UWZtLjKvKyFlKkatRK235qQ3mokyPoQ== + version "1.62.1" + resolved "https://registry.npmjs.org/sass/-/sass-1.62.1.tgz#caa8d6bf098935bc92fc73fa169fb3790cacd029" + integrity sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -16131,19 +16080,19 @@ schema-utils@^2.6.5: ajv "^6.12.4" ajv-keywords "^3.5.2" -schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0: - version "3.3.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe" - integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg== +schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.1.2: + version "3.1.2" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz#36c10abca6f7577aeae136c804b0c741edeadc99" + integrity sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg== dependencies: "@types/json-schema" "^7.0.8" ajv "^6.12.5" ajv-keywords "^3.5.2" schema-utils@^4.0.0: - version "4.2.0" - resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b" - integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw== + version "4.0.1" + resolved "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz#eb2d042df8b01f4b5c276a2dfd41ba0faab72e8d" + integrity sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ== dependencies: "@types/json-schema" "^7.0.9" ajv "^8.9.0" @@ -16189,7 +16138,7 @@ semver@7.3.8: dependencies: lru-cache "^6.0.0" -semver@7.5.0: +semver@7.5.0, semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8: version "7.5.0" resolved "https://registry.npmjs.org/semver/-/semver-7.5.0.tgz#ed8c5dc8efb6c629c88b23d41dc9bf40c1d96cd0" integrity sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== @@ -16201,13 +16150,6 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0: resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== -semver@^7.0.0, semver@^7.1.1, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7, semver@^7.3.8: - version "7.5.1" - resolved "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz#c90c4d631cf74720e46b21c1d37ea07edfab91ec" - integrity sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw== - dependencies: - lru-cache "^6.0.0" - send@0.18.0: version "0.18.0" resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" @@ -16358,9 +16300,9 @@ signal-exit@3.0.7, signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.3, s integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== signal-exit@^4.0.1: - version "4.0.2" - resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz#ff55bb1d9ff2114c13b400688fa544ac63c36967" - integrity sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== + version "4.0.1" + resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.1.tgz#96a61033896120ec9335d96851d902cc98f0ba2a" + integrity sha512-uUWsN4aOxJAS8KOuf3QMyFtgm1pkb6I+KRZbRF/ghdf5T7sM+B1lLLzPDxswUjkmHyxQAVzEgG35E3NzDM9GVw== signedsource@^1.0.0: version "1.0.0" @@ -16368,12 +16310,11 @@ signedsource@^1.0.0: integrity sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww== sigstore@^1.0.0, sigstore@^1.3.0, sigstore@^1.4.0: - version "1.6.0" - resolved "https://registry.npmjs.org/sigstore/-/sigstore-1.6.0.tgz#887a4007c6ee83f3ef3fd844be1a0840e849c301" - integrity sha512-QODKff/qW/TXOZI6V/Clqu74xnInAS6it05mufj4/fSewexLtfEntgLZZcBtUK44CDQyUE5TUXYy1ARYzlfG9g== + version "1.4.0" + resolved "https://registry.npmjs.org/sigstore/-/sigstore-1.4.0.tgz#2e3a28c08b1b8246744c27cfb179c525c3f164d8" + integrity sha512-N7TRpSbFjY/TrFDg6yGAQSYBrQ5s6qmPiq4pD6fkv1LoyfMsLG0NwZWG2s5q+uttLHgyVyTa0Rogx2P78rN8kQ== dependencies: "@sigstore/protobuf-specs" "^0.1.0" - "@sigstore/tuf" "^1.0.0" make-fetch-happen "^11.0.1" tuf-js "^1.1.3" @@ -16418,6 +16359,11 @@ slash@^4.0.0: resolved "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== + slice-ansi@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" @@ -16485,9 +16431,9 @@ socket.io-client@4.5.4: socket.io-parser "~4.2.1" socket.io-parser@~4.2.1: - version "4.2.4" - resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.4.tgz#c806966cf7270601e47469ddeec30fbdfda44c83" - integrity sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew== + version "4.2.2" + resolved "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.2.tgz#1dd384019e25b7a3d374877f492ab34f2ad0d206" + integrity sha512-DJtziuKypFkMMHCm2uIshOYC7QaylbtzQwiMYDuCKy3OPkjLzu4B2vAhTlqipRHHzrI0NJeBAizTK7X+6m1jVw== dependencies: "@socket.io/component-emitter" "~3.1.0" debug "~4.3.1" @@ -16585,6 +16531,13 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== +source-map@^0.4.2: + version "0.4.4" + resolved "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" + integrity sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A== + dependencies: + amdefine ">=0.0.4" + source-map@^0.5.0, source-map@^0.5.6, source-map@~0.5.3: version "0.5.7" resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" @@ -16626,11 +16579,23 @@ spdx-license-ids@^3.0.0: resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== +specificity@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/specificity/-/specificity-0.2.1.tgz#3a7047c2a179f35362e3990745cea539f15161b8" + integrity sha512-BKt+HMoZ3vkQLVmNrTKbU9ID+ZiEBBCsH+nYgOOpyxSWjaJdtA2pjOFMfrS5h6nrrr7djYDzDR834UG0L6XkUA== + split-on-first@^1.0.0: version "1.1.0" resolved "https://registry.npmjs.org/split-on-first/-/split-on-first-1.1.0.tgz#f610afeee3b12bce1d0c30425e76398b78249a5f" integrity sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw== +split2@^0.2.1: + version "0.2.1" + resolved "https://registry.npmjs.org/split2/-/split2-0.2.1.tgz#02ddac9adc03ec0bb78c1282ec079ca6e85ae900" + integrity sha512-D/oTExYAkC9nWleOCTOyNmAuzfAT/6rHGBA9LIK7FVnGo13CSvrKCUzKenwH6U1s2znY9MqH6v0UQTEDa3vJmg== + dependencies: + through2 "~0.6.1" + split2@^3.0.0: version "3.2.2" resolved "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz#bf2cf2a37d838312c249c89206fd7a17dd12365f" @@ -16749,6 +16714,21 @@ stealthy-require@^1.1.1: resolved "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" integrity sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g== +stop-iteration-iterator@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" + integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== + dependencies: + internal-slot "^1.0.4" + +stream-combiner@^0.2.1: + version "0.2.2" + resolved "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.2.2.tgz#aec8cbac177b56b6f4fa479ced8c1912cee52858" + integrity sha512-6yHMqgLYDzQDcAkL+tjJDC5nSNuNIx0vZtRZeiPh7Saef7VHX9H5Ijn9l2VIol2zaNYlYEX6KyuT/237A58qEQ== + dependencies: + duplexer "~0.1.1" + through "~2.3.4" + streamsearch@^1.1.0: version "1.1.0" resolved "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764" @@ -16797,6 +16777,23 @@ string-similarity@^1.2.2: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0: + version "2.1.1" + resolved "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: version "5.1.2" resolved "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" @@ -16820,7 +16817,7 @@ string.prototype.matchall@^4.0.8: regexp.prototype.flags "^1.4.3" side-channel "^1.0.4" -string.prototype.trim@^1.2.1, string.prototype.trim@^1.2.7: +string.prototype.trim@^1.2.1, string.prototype.trim@^1.2.7, string.prototype.trim@~1.2.7: version "1.2.7" resolved "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== @@ -16854,6 +16851,11 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.2.0" +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ== + string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -16885,6 +16887,13 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== + dependencies: + ansi-regex "^3.0.0" + strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" @@ -16893,9 +16902,9 @@ strip-ansi@^5.2.0: ansi-regex "^4.1.0" strip-ansi@^7.0.1: - version "7.1.0" - resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + version "7.0.1" + resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" + integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== dependencies: ansi-regex "^6.0.1" @@ -16904,6 +16913,13 @@ strip-bom-string@^1.0.0: resolved "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g== +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + integrity sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g== + dependencies: + is-utf8 "^0.2.0" + strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -16929,6 +16945,13 @@ strip-final-newline@^3.0.0: resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + integrity sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA== + dependencies: + get-stdin "^4.0.1" + strip-indent@^3.0.0: version "3.0.0" resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" @@ -16999,9 +17022,9 @@ style-to-object@0.3.0, style-to-object@^0.3.0: inline-style-parser "0.1.1" styled-components@^5.3.6: - version "5.3.11" - resolved "https://registry.npmjs.org/styled-components/-/styled-components-5.3.11.tgz#9fda7bf1108e39bf3f3e612fcc18170dedcd57a8" - integrity sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw== + version "5.3.10" + resolved "https://registry.npmjs.org/styled-components/-/styled-components-5.3.10.tgz#42f7245f58fe960362a63f543dda23c0ac107c0f" + integrity sha512-3kSzSBN0TiCnGJM04UwO1HklIQQSXW7rCARUk+VyMR7clz8XVlA3jijtf5ypqoDIdNMKx3la4VvaPFR855SFcg== dependencies: "@babel/helper-module-imports" "^7.0.0" "@babel/traverse" "^7.4.5" @@ -17014,6 +17037,23 @@ styled-components@^5.3.6: shallowequal "^1.1.0" supports-color "^5.5.0" +stylehacks@^2.3.0: + version "2.3.2" + resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-2.3.2.tgz#64c83e0438a68c9edf449e8c552a7d9ab6009b0b" + integrity sha512-cWtUu/KdmyR0J37V4wjD7x2DyMJykPYhRuv72WiV4n5GkDjbhSml/rqOqLqXVAVWiKZh0XbMO47sLdNJvBzKQQ== + dependencies: + browserslist "^1.1.3" + chalk "^1.1.1" + log-symbols "^1.0.2" + minimist "^1.2.0" + plur "^2.1.2" + postcss "^5.0.18" + postcss-reporter "^1.3.3" + postcss-selector-parser "^2.0.0" + read-file-stdin "^0.2.1" + text-table "^0.2.0" + write-file-stdout "0.0.2" + stylehacks@^5.1.1: version "5.1.1" resolved "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" @@ -17069,7 +17109,15 @@ stylelint-scss@^4.0.0: postcss-selector-parser "^6.0.11" postcss-value-parser "^4.2.0" -stylelint@^14.14.1, stylelint@^14.9.1: +stylelint-test-rule-tape@^0.2.0: + version "0.2.0" + resolved "https://registry.npmjs.org/stylelint-test-rule-tape/-/stylelint-test-rule-tape-0.2.0.tgz#3514ecce8ca0ac8abbf229ae4840a0979648aac8" + integrity sha512-9A8WEcIM/ZZw81hmhe+I4UvB7TXBQi5wq+aWhdBZcjdXVwf1w5q6ky7WpxldjkW2ewgI6h+4hc8I6uKXRZ/iCA== + dependencies: + stylelint "^6.2.0" + tape "^4.5.1" + +stylelint@^14.14.1: version "14.16.1" resolved "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz#b911063530619a1bbe44c2b875fd8181ebdc742d" integrity sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A== @@ -17113,11 +17161,55 @@ stylelint@^14.14.1, stylelint@^14.9.1: v8-compile-cache "^2.3.0" write-file-atomic "^4.0.2" +stylelint@^6.2.0: + version "6.9.0" + resolved "https://registry.npmjs.org/stylelint/-/stylelint-6.9.0.tgz#2d2387097c1eb54e6e323b8c4867725da5e02148" + integrity sha512-hxDR9bNLpQGlXiv9KTgZEmDATKR634xCivU49iHKE4VpXhf+/FlKkWVXF1FzyLEDKdpGFVqZ9St4i+saW9Qr/Q== + dependencies: + autoprefixer "^6.0.0" + balanced-match "^0.4.0" + chalk "^1.1.1" + colorguard "^1.2.0" + cosmiconfig "^1.1.0" + doiuse "^2.3.0" + execall "^1.0.0" + get-stdin "^5.0.0" + globby "^5.0.0" + globjoin "^0.1.2" + html-tags "^1.1.1" + htmlparser2 "^3.9.0" + lodash "^4.0.0" + log-symbols "^1.0.2" + meow "^3.3.0" + multimatch "^2.1.0" + normalize-selector "^0.2.0" + postcss "^5.0.20" + postcss-less "^0.14.0" + postcss-reporter "^1.3.0" + postcss-resolve-nested-selector "^0.1.1" + postcss-scss "^0.1.3" + postcss-selector-parser "^2.0.0" + postcss-value-parser "^3.1.1" + resolve-from "^2.0.0" + specificity "^0.2.1" + string-width "^1.0.1" + stylehacks "^2.3.0" + sugarss "^0.1.2" + svg-tags "^1.0.0" + table "^3.7.8" + sudo-prompt@^8.2.0: version "8.2.5" resolved "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz#cc5ef3769a134bb94b24a631cc09628d4d53603e" integrity sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw== +sugarss@^0.1.2: + version "0.1.6" + resolved "https://registry.npmjs.org/sugarss/-/sugarss-0.1.6.tgz#fe3ac0e1e07282aef1de84a80b72386ff4e7ea37" + integrity sha512-4Oz04ycq0JYd49G0t3TyRnQoFE9a822sWPHcVyhsDzzG67IC7AA1RJqQ5/7qlQxk2ZW4lt9bf/XvmU0UP3SJ9w== + dependencies: + postcss "^5.2.0" + supports-color@^2.0.0: version "2.0.0" resolved "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" @@ -17158,7 +17250,7 @@ supports-color@^8.0.0: dependencies: has-flag "^4.0.0" -supports-hyperlinks@^2.0.0, supports-hyperlinks@^2.3.0: +supports-hyperlinks@^2.3.0: version "2.3.0" resolved "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz#3943544347c1ff90b15effb03fc14ae45ec10624" integrity sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== @@ -17240,6 +17332,13 @@ swap-case@^2.0.2: dependencies: tslib "^2.0.3" +synesthesia@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/synesthesia/-/synesthesia-1.0.1.tgz#5ef95ea548c0d5c6e6f9bb4b0d0731dff864a777" + integrity sha512-MSbkFiIg2TSlzPq0Ljufh2jukkzfyGcGPa0WPCznYzgCVLIgwEzSd+3K+wRJzQ/aQWFw4iR62U4WNVqRYFdBdQ== + dependencies: + css-color-names "0.0.3" + synp@^1.9.10: version "1.9.10" resolved "https://registry.npmjs.org/synp/-/synp-1.9.10.tgz#53163321a600418c9b06af0db499939ffce12907" @@ -17265,6 +17364,18 @@ table-layout@^1.0.2: typical "^5.2.0" wordwrapjs "^4.0.0" +table@^3.7.8: + version "3.8.3" + resolved "https://registry.npmjs.org/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f" + integrity sha512-RZuzIOtzFbprLCE0AXhkI0Xi42ZJLZhCC+qkwuMLf/Vjz3maWpA8gz1qMdbmNoI9cOROT2Am/DxeRyXenrL11g== + dependencies: + ajv "^4.7.0" + ajv-keywords "^1.0.0" + chalk "^1.1.1" + lodash "^4.0.0" + slice-ansi "0.0.4" + string-width "^2.0.0" + table@^6.0.9, table@^6.8.1: version "6.8.1" resolved "https://registry.npmjs.org/table/-/table-6.8.1.tgz#ea2b71359fe03b017a5fbc296204471158080bdf" @@ -17286,6 +17397,27 @@ tapable@^2.1.1, tapable@^2.2.0: resolved "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== +tape@^4.5.1: + version "4.16.2" + resolved "https://registry.npmjs.org/tape/-/tape-4.16.2.tgz#7565e6af20426565557266e9dda7215869b297b6" + integrity sha512-TUChV+q0GxBBCEbfCYkGLkv8hDJYjMdSWdE0/Lr331sB389dsvFUHNV9ph5iQqKzt8Ss9drzcda/YeexclBFqg== + dependencies: + call-bind "~1.0.2" + deep-equal "~1.1.1" + defined "~1.0.1" + dotignore "~0.1.2" + for-each "~0.3.3" + glob "~7.2.3" + has "~1.0.3" + inherits "~2.0.4" + is-regex "~1.1.4" + minimist "~1.2.7" + object-inspect "~1.12.3" + resolve "~1.22.1" + resumer "~0.0.0" + string.prototype.trim "~1.2.7" + through "~2.3.8" + tar-fs@^2.0.0, tar-fs@^2.1.1: version "2.1.1" resolved "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" @@ -17320,9 +17452,9 @@ tar@6.1.11: yallist "^4.0.0" tar@^6.1.11, tar@^6.1.2: - version "6.1.15" - resolved "https://registry.npmjs.org/tar/-/tar-6.1.15.tgz#c9738b0b98845a3b344d334b8fa3041aaba53a69" - integrity sha512-/zKt9UyngnxIT/EAGYuxaMYgOIJiP81ab9ZfkILq4oNLPFX50qyYmu7jRj9qeXoxmJHjGlbH0+cm2uy1WCs10A== + version "6.1.14" + resolved "https://registry.npmjs.org/tar/-/tar-6.1.14.tgz#e87926bec1cfe7c9e783a77a79f3e81c1cfa3b66" + integrity sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" @@ -17365,18 +17497,10 @@ term-size@^2.1.0: resolved "https://registry.npmjs.org/term-size/-/term-size-2.2.1.tgz#2a6a54840432c2fb6320fea0f415531e90189f54" integrity sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg== -terminal-link@^2.0.0: - version "2.1.1" - resolved "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" - integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== - dependencies: - ansi-escapes "^4.2.1" - supports-hyperlinks "^2.0.0" - terser-webpack-plugin@^5.2.4, terser-webpack-plugin@^5.3.7: - version "5.3.9" - resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1" - integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA== + version "5.3.8" + resolved "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.8.tgz#415e03d2508f7de63d59eca85c5d102838f06610" + integrity sha512-WiHL3ElchZMsK27P8uIUh4604IgJyAW47LVXGbEoB21DbQcZ+OuMpGjVYnEUaqcWM6dO8uS2qUbA7LSCWqvsbg== dependencies: "@jridgewell/trace-mapping" "^0.3.17" jest-worker "^27.4.5" @@ -17385,12 +17509,12 @@ terser-webpack-plugin@^5.2.4, terser-webpack-plugin@^5.3.7: terser "^5.16.8" terser@^5.16.8, terser@^5.2.0: - version "5.18.0" - resolved "https://registry.npmjs.org/terser/-/terser-5.18.0.tgz#dc811fb8e3481a875d545bda247c8730ee4dc76b" - integrity sha512-pdL757Ig5a0I+owA42l6tIuEycRuM7FPY4n62h44mRLRfnOxJkkOHd6i89dOpwZlpF6JXBwaAHF6yWzFrt+QyA== + version "5.17.3" + resolved "https://registry.npmjs.org/terser/-/terser-5.17.3.tgz#7f908f16b3cdf3f6c0f8338e6c1c674837f90d25" + integrity sha512-AudpAZKmZHkG9jueayypz4duuCFJMMNGRMwaPvQKWfxKedh8Z2x3OCoDqIIi1xx5+iwx1u6Au8XQcc9Lke65Yg== dependencies: - "@jridgewell/source-map" "^0.3.3" - acorn "^8.8.2" + "@jridgewell/source-map" "^0.3.2" + acorn "^8.5.0" commander "^2.20.0" source-map-support "~0.5.20" @@ -17418,6 +17542,14 @@ thenby@^1.3.4: resolved "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz#81581f6e1bb324c6dedeae9bfc28e59b1a2201cc" integrity sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ== +through2@^0.6.1, through2@^0.6.3, through2@~0.6.1: + version "0.6.5" + resolved "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" + integrity sha512-RkK/CCESdTKQZHdmKICijdKKsCRVHs5KsLZ6pACAmF/1GPUQhonHSXWNERctxEp7RmvjdNbZTL5z9V7nSCXKcg== + dependencies: + readable-stream ">=1.0.33-1 <1.1.0-0" + xtend ">=4.0.0 <4.1.0-0" + through2@^2.0.0: version "2.0.5" resolved "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" @@ -17433,7 +17565,7 @@ through2@^4.0.0: dependencies: readable-stream "3" -through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8: +through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8, through@~2.3.4, through@~2.3.8: version "2.3.8" resolved "https://registry.npmjs.org/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== @@ -17543,6 +17675,11 @@ treeverse@^3.0.0: resolved "https://registry.npmjs.org/treeverse/-/treeverse-3.0.0.tgz#dd82de9eb602115c6ebd77a574aae67003cb48c8" integrity sha512-gcANaAnd2QDZFmHFEOF4k7uc1J/6a6z3DJMd/QwEyxLoKGiptJRwid582r7QIsFlFMIZ3SnxfS52S4hm2DHkuQ== +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + integrity sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw== + trim-newlines@^3.0.0: version "3.0.1" resolved "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz#260a5d962d8b752425b32f3a7db0dcacd176c144" @@ -17612,9 +17749,9 @@ tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0: integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.4.0, tslib@^2.5.0: - version "2.5.3" - resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.3.tgz#24944ba2d990940e6e982c4bea147aba80209913" - integrity sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w== + version "2.5.0" + resolved "https://registry.npmjs.org/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" + integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== tslib@~2.4.0: version "2.4.1" @@ -17629,13 +17766,13 @@ tsutils@^3.21.0: tslib "^1.8.1" tuf-js@^1.1.3: - version "1.1.7" - resolved "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.7.tgz#21b7ae92a9373015be77dfe0cb282a80ec3bbe43" - integrity sha512-i3P9Kgw3ytjELUfpuKVDNBJvk4u5bXL6gskv572mcevPbSKCV3zt3djhmlEQ65yERjIbOSncy7U4cQJaB1CBCg== + version "1.1.6" + resolved "https://registry.npmjs.org/tuf-js/-/tuf-js-1.1.6.tgz#ad3e7a20237b83b51c2a8f9d1ddf093279a10fc2" + integrity sha512-CXwFVIsXGbVY4vFiWF7TJKWmlKJAT8TWkH4RmiohJRcDJInix++F0dznDmoVbtJNzZ8yLprKUG4YrDIhv3nBMg== dependencies: "@tufjs/models" "1.0.4" debug "^4.3.4" - make-fetch-happen "^11.1.1" + make-fetch-happen "^11.1.0" tunnel-agent@^0.6.0: version "0.6.0" @@ -17741,9 +17878,9 @@ typedarray@^0.0.6: integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== "typescript@^4.6.4 || ^5.0.0": - version "5.1.3" - resolved "https://registry.npmjs.org/typescript/-/typescript-5.1.3.tgz#8d84219244a6b40b6fb2b33cc1c062f715b9e826" - integrity sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw== + version "5.0.4" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" + integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== typical@^4.0.0: version "4.0.0" @@ -17755,10 +17892,10 @@ typical@^5.2.0: resolved "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz#4daaac4f2b5315460804f0acf6cb69c52bb93066" integrity sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg== -ua-parser-js@^1.0.35: - version "1.0.35" - resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.35.tgz#c4ef44343bc3db0a3cbefdf21822f1b1fc1ab011" - integrity sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA== +ua-parser-js@^0.7.30: + version "0.7.35" + resolved "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.35.tgz#8bda4827be4f0b1dda91699a29499575a1f1d307" + integrity sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g== uglify-js@^3.1.4: version "3.17.4" @@ -17856,6 +17993,11 @@ unified@^8.4.2: trough "^1.0.0" vfile "^4.0.0" +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha512-Gw+zz50YNKPDKXs+9d+aKAjVwpjNwqzvNpLigIruT4HA9lMZNdMqs9x07kKHB/L9WRzqp4+DlTU5s4wG2esdoA== + unique-filename@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2" @@ -18050,7 +18192,7 @@ upath@2.0.1, upath@^2.0.1: resolved "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz#50c73dea68d6f6b990f51d279ce6081665d61a8b" integrity sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w== -update-browserslist-db@^1.0.11: +update-browserslist-db@^1.0.10: version "1.0.11" resolved "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz#9a2a641ad2907ae7b3616506f4b977851db5b940" integrity sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== @@ -18133,12 +18275,12 @@ url-parse-lax@^3.0.0: prepend-http "^2.0.0" url@^0.11.0: - version "0.11.1" - resolved "https://registry.npmjs.org/url/-/url-0.11.1.tgz#26f90f615427eca1b9f4d6a28288c147e2302a32" - integrity sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA== + version "0.11.0" + resolved "https://registry.npmjs.org/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ== dependencies: - punycode "^1.4.1" - qs "^6.11.0" + punycode "1.3.2" + querystring "0.2.0" util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" @@ -18254,9 +18396,9 @@ vfile-location@^3.0.0, vfile-location@^3.2.0: integrity sha512-aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA== vfile-message@*: - version "4.0.1" - resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.1.tgz#7f2b7a12bf59af281ac8fdf4cccebfa50d8eadf0" - integrity sha512-Z1WqUoIK6T6LLoyO64ncUapmjlA84JqKRQFjcG0kZnnyysfq2rMyg5NvKhkQ16GH9FRCRT+Rk4G0aMxgKYS16g== + version "3.1.4" + resolved "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea" + integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw== dependencies: "@types/unist" "^2.0.0" unist-util-stringify-position "^3.0.0" @@ -18356,9 +18498,9 @@ webpack-dev-middleware@^4.3.0: schema-utils "^3.0.0" webpack-merge@^5.8.0: - version "5.9.0" - resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826" - integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg== + version "5.8.0" + resolved "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61" + integrity sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q== dependencies: clone-deep "^4.0.1" wildcard "^2.0.0" @@ -18385,9 +18527,9 @@ webpack-sources@^3.2.3: integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w== webpack-stats-plugin@^1.0.3: - version "1.1.3" - resolved "https://registry.npmjs.org/webpack-stats-plugin/-/webpack-stats-plugin-1.1.3.tgz#ebcc36c8b468074ad737882e2043c1ce4b55d928" - integrity sha512-yUKYyy+e0iF/w31QdfioRKY+h3jDBRpthexBOWGKda99iu2l/wxYsI/XqdlP5IU58/0KB9CsJZgWNAl+/MPkRw== + version "1.1.1" + resolved "https://registry.npmjs.org/webpack-stats-plugin/-/webpack-stats-plugin-1.1.1.tgz#11aabf6ad536fd2843eb2e11a58d3485dc111b3e" + integrity sha512-aWwE/YuO2W7VCOyWwyDJ7BRSYRYjeXat+X31YiasMM3FS6/4X9W4Mb9Q0g+jIdVgArr1Mb08sHBJKMT5M9+gVA== webpack-virtual-modules@^0.3.2: version "0.3.2" @@ -18397,9 +18539,9 @@ webpack-virtual-modules@^0.3.2: debug "^3.0.0" webpack@^5.61.0: - version "5.87.0" - resolved "https://registry.npmjs.org/webpack/-/webpack-5.87.0.tgz#df8a9c094c6037f45e0d77598f9e59d33ca3a98c" - integrity sha512-GOu1tNbQ7p1bDEoFRs2YPcfyGs8xq52yyPBZ3m2VGnXGtV9MxjrkABHm4V9Ia280OefsSLzvbVoXcfLxjKY/Iw== + version "5.82.0" + resolved "https://registry.npmjs.org/webpack/-/webpack-5.82.0.tgz#3c0d074dec79401db026b4ba0fb23d6333f88e7d" + integrity sha512-iGNA2fHhnDcV1bONdUu554eZx+XeldsaeQ8T67H6KKHl2nUSwX8Zm7cmzOA46ox/X1ARxf7Bjv8wQ/HsB5fxBg== dependencies: "@types/eslint-scope" "^3.7.3" "@types/estree" "^1.0.0" @@ -18407,10 +18549,10 @@ webpack@^5.61.0: "@webassemblyjs/wasm-edit" "^1.11.5" "@webassemblyjs/wasm-parser" "^1.11.5" acorn "^8.7.1" - acorn-import-assertions "^1.9.0" + acorn-import-assertions "^1.7.6" browserslist "^4.14.5" chrome-trace-event "^1.0.2" - enhanced-resolve "^5.15.0" + enhanced-resolve "^5.13.0" es-module-lexer "^1.2.1" eslint-scope "5.1.1" events "^3.2.0" @@ -18420,7 +18562,7 @@ webpack@^5.61.0: loader-runner "^4.2.0" mime-types "^2.1.27" neo-async "^2.6.2" - schema-utils "^3.2.0" + schema-utils "^3.1.2" tapable "^2.1.1" terser-webpack-plugin "^5.3.7" watchpack "^2.4.0" @@ -18445,6 +18587,16 @@ which-boxed-primitive@^1.0.2: is-string "^1.0.5" is-symbol "^1.0.3" +which-collection@^1.0.1: + version "1.0.1" + resolved "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" + integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + dependencies: + is-map "^2.0.1" + is-set "^2.0.1" + is-weakmap "^2.0.1" + is-weakset "^2.0.1" + which-module@^2.0.0: version "2.0.1" resolved "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" @@ -18502,6 +18654,11 @@ wildcard@^2.0.0: resolved "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67" integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ== +window-size@^0.1.4: + version "0.1.4" + resolved "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + integrity sha512-2thx4pB0cV3h+Bw7QmMXcEbdmOzv9t0HFplJH/Lz6yu60hXYy5RT8rUu+wlIreVxWsGN20mo+MHeCSfUpQBwPw== + word-wrap@^1.2.3: version "1.2.3" resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" @@ -18529,6 +18686,14 @@ wordwrapjs@^4.0.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw== + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi@^6.2.0: version "6.2.0" resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" @@ -18579,7 +18744,7 @@ write-file-atomic@^3.0.0: signal-exit "^3.0.2" typedarray-to-buffer "^3.1.5" -write-file-atomic@^4.0.1, write-file-atomic@^4.0.2: +write-file-atomic@^4.0.2: version "4.0.2" resolved "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== @@ -18595,6 +18760,11 @@ write-file-atomic@^5.0.0: imurmurhash "^0.1.4" signal-exit "^4.0.1" +write-file-stdout@0.0.2: + version "0.0.2" + resolved "https://registry.npmjs.org/write-file-stdout/-/write-file-stdout-0.0.2.tgz#c252d7c7c5b1b402897630e3453c7bfe690d9ca1" + integrity sha512-KofbSPeePSre3soWCMaqcWHVZy9t/rbJaEMa2h19cupODsvc4eh7390Se1TjzZEL77rS+D6dznu0TLXyCbR+sw== + write-json-file@^3.2.0: version "3.2.0" resolved "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz#65bbdc9ecd8a1458e15952770ccbadfcff5fe62a" @@ -18654,7 +18824,7 @@ xstate@^4.37.2: resolved "https://registry.npmjs.org/xstate/-/xstate-4.37.2.tgz#c5f4c1d8062784238b91e2dfddca05f821cb4eac" integrity sha512-Qm337O49CRTZ3PRyRuK6b+kvI+D3JGxXIZCTul+xEsyFCVkTFDt5jixaL1nBWcUBcaTQ9um/5CRGVItPi7fveg== -xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: +"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: version "4.0.2" resolved "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== @@ -18664,6 +18834,11 @@ xxhash-wasm@^0.4.2: resolved "https://registry.npmjs.org/xxhash-wasm/-/xxhash-wasm-0.4.2.tgz#752398c131a4dd407b5132ba62ad372029be6f79" integrity sha512-/eyHVRJQCirEkSZ1agRSCwriMhwlyUcFkXD5TPVSLP+IPzjsqMVzZwdoczLp1SoQU0R3dxz1RpIK+4YNQbCVOA== +y18n@^3.2.0: + version "3.2.2" + resolved "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz#85c901bd6470ce71fc4bb723ad209b70f7f28696" + integrity sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ== + y18n@^4.0.0: version "4.0.3" resolved "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" @@ -18704,9 +18879,9 @@ yaml@^1.10.0, yaml@^1.10.2, yaml@^1.7.2: integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yaml@^2.0.0, yaml@^2.2.2: - version "2.3.1" - resolved "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz#02fe0975d23cd441242aa7204e09fc28ac2ac33b" - integrity sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ== + version "2.2.2" + resolved "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz#ec551ef37326e6d42872dad1970300f8eb83a073" + integrity sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== yargs-parser@20.2.4: version "20.2.4" @@ -18744,6 +18919,11 @@ yargs@16.2.0, yargs@^16.2.0: y18n "^5.0.5" yargs-parser "^20.2.2" +yargs@^1.2.6: + version "1.3.3" + resolved "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz#054de8b61f22eefdb7207059eaef9d6b83fb931a" + integrity sha512-7OGt4xXoWJQh5ulgZ78rKaqY7dNWbjfK+UKxGcIlaM2j7C4fqGchyv8CPvEWdRPrHp6Ula/YU8yGRpYGOHrI+g== + yargs@^15.0.1, yargs@^15.3.1, yargs@^15.4.1: version "15.4.1" resolved "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz#0d87a16de01aee9d8bec2bfbf74f67851730f4f8" @@ -18774,6 +18954,19 @@ yargs@^17.0.0, yargs@^17.3.1, yargs@^17.6.2: y18n "^5.0.5" yargs-parser "^21.1.1" +yargs@^3.5.4: + version "3.32.0" + resolved "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz#03088e9ebf9e756b69751611d2a5ef591482c995" + integrity sha512-ONJZiimStfZzhKamYvR/xvmgW3uEkAUFSP91y2caTEPhzF6uP2JfPiVZcq66b/YR0C3uitxSV7+T1x8p5bkmMg== + dependencies: + camelcase "^2.0.1" + cliui "^3.0.3" + decamelize "^1.1.1" + os-locale "^1.4.0" + string-width "^1.0.1" + window-size "^0.1.4" + y18n "^3.2.0" + yarn-audit-fix@^9.3.10: version "9.3.10" resolved "https://registry.npmjs.org/yarn-audit-fix/-/yarn-audit-fix-9.3.10.tgz#42ece922adddf11477a696c106a172df611e681f"