diff --git a/.eslintignore b/.eslintignore index 36181c42..21db5ac7 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,4 @@ dist/**/* # not ignored folders/files -!.travis.yml +!.github diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 96596559..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,12 +0,0 @@ -const baseConfig = require('lyne-helper-eslint-config'); - -baseConfig.globals = { - __dirname: 'readonly', - module: 'readonly', - process: 'readonly', - require: 'readonly' -}; - -baseConfig.plugins = ['yaml']; - -module.exports = baseConfig; diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 00000000..35fe7ab5 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,12 @@ +{ + "root": true, + "env": { + "es2020": true, + "node": true + }, + "extends": ["eslint:recommended", "prettier"], + "parserOptions": { + "ecmaVersion": 2020 + }, + "plugins": ["yaml"] +} diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 24a3fc5a..def31a7d 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -1,6 +1,6 @@ # Security Policy -⚡ **PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, [SEE BELOW](#reporting-a-vulnerability--security-issue).** ⚡ +⚡ **PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, [SEE BELOW](#reporting-a-vulnerability--security-issue).** ⚡ ## Supported Versions @@ -10,11 +10,12 @@ Only the latest major version receives security fixes. Let’s keep things simple – -The *Lyne* team takes all security concerns in *Lyne Design System* seriously. Thank you for improving the security of *Lyne*. We appreciate your efforts, responsible disclosure your information and will make every effort to acknowledge your contributions. +The _Lyne_ team takes all security concerns in _Lyne Design System_ seriously. Thank you for improving the security of _Lyne_. We appreciate your efforts, responsible disclosure your information and will make every effort to acknowledge your contributions. -If you think you have identified a vulnerability or security related issue within *Lyne Design System*, please report it immediately to lyne-design-system@sbb.ch. If you are not sure, don’t worry. Better safe than sorry – just send an email. +If you think you have identified a vulnerability or security related issue within _Lyne Design System_, please report it immediately to lyne-design-system@sbb.ch. If you are not sure, don’t worry. Better safe than sorry – just send an email. **Please do not:** + - Open issues on GitHub related to any security concerns **publicly** - Include **anyone else** on the disclosure email diff --git a/.github/actions/download-artifacts-from-workflow/action.yml b/.github/actions/download-artifacts-from-workflow/action.yml index 40445e81..b32971c6 100644 --- a/.github/actions/download-artifacts-from-workflow/action.yml +++ b/.github/actions/download-artifacts-from-workflow/action.yml @@ -1,42 +1,42 @@ -name: "Download artifacts from another workflow" -description: "Download artifacts from another workflow" +name: 'Download artifacts from another workflow' +description: 'Download artifacts from another workflow' inputs: - artifacts: # id of input + artifacts: # id of input description: 'Comma-separated list of downloadable artifacts' required: true runs: - using: "composite" + using: 'composite' steps: - - name: 'Download artifacts' - uses: actions/github-script@v6 - with: - script: | - const fs = require('fs'); - const artifacts = '${{ inputs.artifacts }}'.trim().split(/[, ]+/); - console.log(`Attempting to download artifacts ${artifacts.join(', ')}`); - const workflowArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ - owner: context.repo.owner, - repo: context.repo.repo, - run_id: context.payload.workflow_run.id, - }); - for (const artifact of artifacts) { - const matchArtifact = workflowArtifacts.data.artifacts - .find((a) => a.name == artifact); - if (matchArtifact) { - console.log(`Found artifact ${artifact}`); - const download = await github.rest.actions.downloadArtifact({ - owner: context.repo.owner, - repo: context.repo.repo, - artifact_id: matchArtifact.id, - archive_format: 'zip', - }); - const artifactPath = `${process.env.GITHUB_WORKSPACE}/${artifact}.zip`; - fs.writeFileSync(artifactPath, Buffer.from(download.data)); - console.log(`Downloaded artifact to ${artifactPath}`); - } else { - const availableArtifacts = workflowArtifacts.data.artifacts.map((a) => a.name); - console.log(`Unable to find artifact ${artifact} (Available: ${availableArtifacts.join(', ')})`); - } + - name: 'Download artifacts' + uses: actions/github-script@v6 + with: + script: | + const fs = require('fs'); + const artifacts = '${{ inputs.artifacts }}'.trim().split(/[, ]+/); + console.log(`Attempting to download artifacts ${artifacts.join(', ')}`); + const workflowArtifacts = await github.rest.actions.listWorkflowRunArtifacts({ + owner: context.repo.owner, + repo: context.repo.repo, + run_id: context.payload.workflow_run.id, + }); + for (const artifact of artifacts) { + const matchArtifact = workflowArtifacts.data.artifacts + .find((a) => a.name == artifact); + if (matchArtifact) { + console.log(`Found artifact ${artifact}`); + const download = await github.rest.actions.downloadArtifact({ + owner: context.repo.owner, + repo: context.repo.repo, + artifact_id: matchArtifact.id, + archive_format: 'zip', + }); + const artifactPath = `${process.env.GITHUB_WORKSPACE}/${artifact}.zip`; + fs.writeFileSync(artifactPath, Buffer.from(download.data)); + console.log(`Downloaded artifact to ${artifactPath}`); + } else { + const availableArtifacts = workflowArtifacts.data.artifacts.map((a) => a.name); + console.log(`Unable to find artifact ${artifact} (Available: ${availableArtifacts.join(', ')})`); } + } diff --git a/.github/actions/yarn-install/action.yml b/.github/actions/yarn-install/action.yml index dbf3db90..40bcb308 100644 --- a/.github/actions/yarn-install/action.yml +++ b/.github/actions/yarn-install/action.yml @@ -1,14 +1,14 @@ -name: "Installing Yarn dependencies" -description: "Installs the dependencies using Yarn" +name: 'Installing Yarn dependencies' +description: 'Installs the dependencies using Yarn' runs: - using: "composite" - steps: - - name: "Yarn: Get cache directory path" + using: 'composite' + steps: + - name: 'Yarn: Get cache directory path' id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" shell: bash - - name: "Yarn: Restore dependencies from cache" + - name: 'Yarn: Restore dependencies from cache' uses: actions/cache@v3 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -17,6 +17,6 @@ runs: # See: https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows#example-using-the-cache-action. key: ${{ runner.os }}-yarn-v1-${{hashFiles('yarn.lock')}} restore-keys: ${{ runner.os }}-yarn-v1- - - name: "Yarn: Install dependencies" + - name: 'Yarn: Install dependencies' run: yarn install --frozen-lockfile --non-interactive shell: bash diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 785e714c..bdd1ad1d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,10 +1,10 @@ version: 2 updates: -- package-ecosystem: npm - directory: "/" - schedule: - interval: "weekly" - day: "sunday" - time: "01:00" - timezone: "Europe/Berlin" - open-pull-requests-limit: 20 + - package-ecosystem: npm + directory: '/' + schedule: + interval: 'weekly' + day: 'sunday' + time: '01:00' + timezone: 'Europe/Berlin' + open-pull-requests-limit: 20 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 544d2db9..3a9c46a3 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -9,14 +9,14 @@ # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # -name: "CodeQL" +name: 'CodeQL' on: push: - branches: [ master ] + branches: [master] pull_request: # The branches below must be a subset of the branches above - branches: [ master ] + branches: [master] schedule: - cron: '43 16 * * 2' @@ -32,40 +32,40 @@ jobs: strategy: fail-fast: false matrix: - language: [ 'javascript' ] + language: ['javascript'] # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] # Learn more: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - - name: Checkout repository - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v2 - # Initializes the CodeQL tools for scanning. - - name: Initialize CodeQL - uses: github/codeql-action/init@v1 - with: - languages: ${{ matrix.language }} - # If you wish to specify custom queries, you can do so here or in a config file. - # By default, queries listed here will override any specified in a config file. - # Prefix the list here with "+" to use these queries and those in the config file. - # queries: ./path/to/local/query, your-org/your-repo/queries@main + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + # queries: ./path/to/local/query, your-org/your-repo/queries@main - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - - name: Autobuild - uses: github/codeql-action/autobuild@v1 + # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v1 - # ℹ️ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl + # ℹ️ Command-line programs to run using the OS shell. + # 📚 https://git.io/JvXDl - # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language + # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines + # and modify them (or add more) to build your code if your project + # uses a compiled language - #- run: | - # make bootstrap - # make release + #- run: | + # make bootstrap + # make release - - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e45ae7d5..8478da1e 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -9,32 +9,31 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 14 - - name: Yarn Install - uses: ./.github/actions/yarn-install + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 14 + - name: Yarn Install + uses: ./.github/actions/yarn-install - - name: Run eslint - run: yarn lint + - name: Run eslint + run: yarn lint build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 14 - - name: Yarn Install - uses: ./.github/actions/yarn-install - - - name: Run build - run: yarn build - - name: Store storybook artifacts - uses: actions/upload-artifact@v3 - with: - name: dist - path: dist/ + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 14 + - name: Yarn Install + uses: ./.github/actions/yarn-install + - name: Run build + run: yarn build + - name: Store storybook artifacts + uses: actions/upload-artifact@v3 + with: + name: dist + path: dist/ # TODO: Trigger lyne-documentation build (node ./ci/trigger_lyne_documentation.js) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c9c2033b..7f2c6f42 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ name: Release # https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ on: workflow_run: - workflows: ["Continuous Integration"] + workflows: ['Continuous Integration'] types: [completed] branches: [master] @@ -39,7 +39,6 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Install netlify CLI run: yarn global add netlify-cli - name: Deploy CDN assets diff --git a/.husky/commit-msg b/.husky/commit-msg index ee8c7d54..db9f148c 100755 --- a/.husky/commit-msg +++ b/.husky/commit-msg @@ -3,4 +3,4 @@ . "$(dirname "$0")/_/husky.sh" -npx --no-install commitlint --edit $1 +yarn commitlint --edit $1 diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000..d2ae35e8 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,4 @@ +#!/bin/sh +. "$(dirname "$0")/_/husky.sh" + +yarn lint-staged diff --git a/.releaserc b/.releaserc index 2c4c5041..d6fe5b9f 100644 --- a/.releaserc +++ b/.releaserc @@ -13,7 +13,7 @@ ["@semantic-release/git", { "assets": [ "package.json", - "package-lock.json", + "yarn.lock", "CHANGELOG.md", "properties/**/*.json" ], diff --git a/CHANGELOG_LEGACY.md b/CHANGELOG_LEGACY.md index 00fdc725..bda74286 100644 --- a/CHANGELOG_LEGACY.md +++ b/CHANGELOG_LEGACY.md @@ -1,1396 +1,1204 @@ # [3.21.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.3...v3.21.0) (2022-05-25) - ### Features -* focus outline design token ([#405](https://github.com/lyne-design-system/lyne-design-tokens/issues/405)) ([fbea86e](https://github.com/lyne-design-system/lyne-design-tokens/commit/fbea86eda35288baf64ce08b5ef11254bdeeeb85)) +- focus outline design token ([#405](https://github.com/lyne-design-system/lyne-design-tokens/issues/405)) ([fbea86e](https://github.com/lyne-design-system/lyne-design-tokens/commit/fbea86eda35288baf64ce08b5ef11254bdeeeb85)) ## [3.20.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.2...v3.20.3) (2022-05-05) - ### Bug Fixes -* remove doubled animation prefix ([4c9d02e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c9d02e90aa64435508c2cc8cab6391cb5d3bc1f)) +- remove doubled animation prefix ([4c9d02e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c9d02e90aa64435508c2cc8cab6391cb5d3bc1f)) ## [3.20.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.1...v3.20.2) (2022-05-05) - ### Bug Fixes -* add ms ([7d36ffa](https://github.com/lyne-design-system/lyne-design-tokens/commit/7d36ffa078b912342246a1bcb5696e71a8b1915a)) -* fix min size of buttons and add animation duration tokens ([79d0f5f](https://github.com/lyne-design-system/lyne-design-tokens/commit/79d0f5f371956411908039157bf0e37bed3c4ffb)) +- add ms ([7d36ffa](https://github.com/lyne-design-system/lyne-design-tokens/commit/7d36ffa078b912342246a1bcb5696e71a8b1915a)) +- fix min size of buttons and add animation duration tokens ([79d0f5f](https://github.com/lyne-design-system/lyne-design-tokens/commit/79d0f5f371956411908039157bf0e37bed3c4ffb)) ## [3.20.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.20.0...v3.20.1) (2022-04-19) - ### Bug Fixes -* adapt form element size tokens to figma specifications ([200efc1](https://github.com/lyne-design-system/lyne-design-tokens/commit/200efc1bb9cc1aeeebda01cbe7ccc3f98acc5ba5)) +- adapt form element size tokens to figma specifications ([200efc1](https://github.com/lyne-design-system/lyne-design-tokens/commit/200efc1bb9cc1aeeebda01cbe7ccc3f98acc5ba5)) # [3.20.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.19.0...v3.20.0) (2022-03-29) - ### Features -* restructure layout design tokens ([62a3853](https://github.com/lyne-design-system/lyne-design-tokens/commit/62a3853f0a4ef9c7e3d3f2d4ca5039c44c1c6f01)) +- restructure layout design tokens ([62a3853](https://github.com/lyne-design-system/lyne-design-tokens/commit/62a3853f0a4ef9c7e3d3f2d4ca5039c44c1c6f01)) # [3.19.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.18.0...v3.19.0) (2022-03-28) - ### Features -* rename token category names ([322569d](https://github.com/lyne-design-system/lyne-design-tokens/commit/322569d25bebc6036791cbe5b2823f35b34694ff)) +- rename token category names ([322569d](https://github.com/lyne-design-system/lyne-design-tokens/commit/322569d25bebc6036791cbe5b2823f35b34694ff)) # [3.18.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.17.1...v3.18.0) (2022-03-28) - ### Bug Fixes -* typo ([ee1e458](https://github.com/lyne-design-system/lyne-design-tokens/commit/ee1e45844f07569503e3a74d44a2cfdcd82d9e47)) - +- typo ([ee1e458](https://github.com/lyne-design-system/lyne-design-tokens/commit/ee1e45844f07569503e3a74d44a2cfdcd82d9e47)) ### Features -* layout design tokens ([abbd2e6](https://github.com/lyne-design-system/lyne-design-tokens/commit/abbd2e6bab81607e6b46274dd4a312f3187f9516)) +- layout design tokens ([abbd2e6](https://github.com/lyne-design-system/lyne-design-tokens/commit/abbd2e6bab81607e6b46274dd4a312f3187f9516)) ## [3.17.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.17.0...v3.17.1) (2022-01-24) - ### Bug Fixes -* resolving merge conflict ([7016915](https://github.com/lyne-design-system/lyne-design-tokens/commit/7016915f80f1df71ed8e9ff3ebaaa95964ef1db0)) +- resolving merge conflict ([7016915](https://github.com/lyne-design-system/lyne-design-tokens/commit/7016915f80f1df71ed8e9ff3ebaaa95964ef1db0)) # [3.17.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.16.0...v3.17.0) (2021-11-15) - ### Features -* add fixed spacing 30x ([b60b4fc](https://github.com/lyne-design-system/lyne-design-tokens/commit/b60b4fcb014dbbf7bac227465e4a945b75b2dfef)) -* fixed spacings ([e57ac15](https://github.com/lyne-design-system/lyne-design-tokens/commit/e57ac1519e3e52edba35b2513a22a29a909817f1)) -* responsive spacing ([3cb74ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3cb74eec9ba7c2250284e292f71dc47659b3253d)) +- add fixed spacing 30x ([b60b4fc](https://github.com/lyne-design-system/lyne-design-tokens/commit/b60b4fcb014dbbf7bac227465e4a945b75b2dfef)) +- fixed spacings ([e57ac15](https://github.com/lyne-design-system/lyne-design-tokens/commit/e57ac1519e3e52edba35b2513a22a29a909817f1)) +- responsive spacing ([3cb74ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3cb74eec9ba7c2250284e292f71dc47659b3253d)) # [3.16.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.3...v3.16.0) (2021-10-06) - ### Features -* introduce new custom properties/CSS variables selector ([1f0ff75](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f0ff75d68748f811b68cc0eaae5191f15f2849e)) +- introduce new custom properties/CSS variables selector ([1f0ff75](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f0ff75d68748f811b68cc0eaae5191f15f2849e)) ## [3.15.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.2...v3.15.3) (2021-09-08) - ### Bug Fixes -* replacing single with double quotes to avoid malformed output in js ([f2be272](https://github.com/lyne-design-system/lyne-design-tokens/commit/f2be2724508a8133a24a307336609c6ec4b88b9b)) +- replacing single with double quotes to avoid malformed output in js ([f2be272](https://github.com/lyne-design-system/lyne-design-tokens/commit/f2be2724508a8133a24a307336609c6ec4b88b9b)) ## [3.15.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.1...v3.15.2) (2021-08-26) - ### Bug Fixes -* re-factoring typo design tokens to primitives ([e3a8d4c](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3a8d4c38ed1dc624806d96185b44a4e8a1f52d9)) +- re-factoring typo design tokens to primitives ([e3a8d4c](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3a8d4c38ed1dc624806d96185b44a4e8a1f52d9)) ## [3.15.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.15.0...v3.15.1) (2021-08-25) - ### Bug Fixes -* adding re-factored typo design token definitions ([834ef19](https://github.com/lyne-design-system/lyne-design-tokens/commit/834ef19e881249a2a6f3bf35fce421db68ad53c0)) +- adding re-factored typo design token definitions ([834ef19](https://github.com/lyne-design-system/lyne-design-tokens/commit/834ef19e881249a2a6f3bf35fce421db68ad53c0)) # [3.15.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.4...v3.15.0) (2021-08-25) - ### Features -* add border-radius-4x ([e02dc46](https://github.com/lyne-design-system/lyne-design-tokens/commit/e02dc465edba82ed44ca0fa71c7a7663a09cb7cd)) +- add border-radius-4x ([e02dc46](https://github.com/lyne-design-system/lyne-design-tokens/commit/e02dc465edba82ed44ca0fa71c7a7663a09cb7cd)) ## [3.14.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.3...v3.14.4) (2021-08-24) - ### Bug Fixes -* remove obsolete shadows ([c18b34d](https://github.com/lyne-design-system/lyne-design-tokens/commit/c18b34dac3fa5c4ecdefe8c29a2d90cc9e7f7c60)) +- remove obsolete shadows ([c18b34d](https://github.com/lyne-design-system/lyne-design-tokens/commit/c18b34dac3fa5c4ecdefe8c29a2d90cc9e7f7c60)) ## [3.14.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.2...v3.14.3) (2021-08-14) - ### Bug Fixes -* fake commit to trigger release ([30d32ff](https://github.com/lyne-design-system/lyne-design-tokens/commit/30d32ff6bcccf9e62dffc7b24fb3a8e51a2cd660)) +- fake commit to trigger release ([30d32ff](https://github.com/lyne-design-system/lyne-design-tokens/commit/30d32ff6bcccf9e62dffc7b24fb3a8e51a2cd660)) ## [3.14.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.1...v3.14.2) (2021-08-13) - ### Bug Fixes -* remove size transform ([d7a5a05](https://github.com/lyne-design-system/lyne-design-tokens/commit/d7a5a05c5619b3acf839cc826b145b39b69e720e)) +- remove size transform ([d7a5a05](https://github.com/lyne-design-system/lyne-design-tokens/commit/d7a5a05c5619b3acf839cc826b145b39b69e720e)) ## [3.14.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.14.0...v3.14.1) (2021-08-13) - ### Bug Fixes -* correct min height of small element ([30f68d7](https://github.com/lyne-design-system/lyne-design-tokens/commit/30f68d7096d3be687b04ce2a12971049cd8e9867)) -* fake commit to trigger release ([90ce1d1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ce1d1f40ee1a611ff1a5cc7a4471bb226c4bc7)) +- correct min height of small element ([30f68d7](https://github.com/lyne-design-system/lyne-design-tokens/commit/30f68d7096d3be687b04ce2a12971049cd8e9867)) +- fake commit to trigger release ([90ce1d1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ce1d1f40ee1a611ff1a5cc7a4471bb226c4bc7)) # [3.14.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.4...v3.14.0) (2021-08-13) - ### Bug Fixes -* delete icon size ([829e4eb](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e4ebc7bf5319c0099a7d06d5936b664bc031b)) -* remove iconSize, add animation, border and size ([febb8be](https://github.com/lyne-design-system/lyne-design-tokens/commit/febb8be87d595e48cfc0e61907322889a68ca327)) -* remove touch ([232ad93](https://github.com/lyne-design-system/lyne-design-tokens/commit/232ad93db654eaaeed1856ca950ad2a7ea5baa1b)) -* remove touch ([3814bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3814bee16ff0097f2ae096c8e1b060a8378d6f12)) -* stick to naming conventions with x ([e2cc690](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2cc690492efe69c313c161fe5168392e8ffe2dc)) - +- delete icon size ([829e4eb](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e4ebc7bf5319c0099a7d06d5936b664bc031b)) +- remove iconSize, add animation, border and size ([febb8be](https://github.com/lyne-design-system/lyne-design-tokens/commit/febb8be87d595e48cfc0e61907322889a68ca327)) +- remove touch ([232ad93](https://github.com/lyne-design-system/lyne-design-tokens/commit/232ad93db654eaaeed1856ca950ad2a7ea5baa1b)) +- remove touch ([3814bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/3814bee16ff0097f2ae096c8e1b060a8378d6f12)) +- stick to naming conventions with x ([e2cc690](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2cc690492efe69c313c161fe5168392e8ffe2dc)) ### Features -* add animation tokens ([56c4592](https://github.com/lyne-design-system/lyne-design-tokens/commit/56c4592a421da149181b44352422e72c6a8419bb)) -* add border tokens ([85b6ea4](https://github.com/lyne-design-system/lyne-design-tokens/commit/85b6ea4203c9da9d934ab0c0fe6a4f5e6c3d96f7)) -* add size tokens ([7a37954](https://github.com/lyne-design-system/lyne-design-tokens/commit/7a379549c3d476a9ff461129031f5d5c655f3111)) +- add animation tokens ([56c4592](https://github.com/lyne-design-system/lyne-design-tokens/commit/56c4592a421da149181b44352422e72c6a8419bb)) +- add border tokens ([85b6ea4](https://github.com/lyne-design-system/lyne-design-tokens/commit/85b6ea4203c9da9d934ab0c0fe6a4f5e6c3d96f7)) +- add size tokens ([7a37954](https://github.com/lyne-design-system/lyne-design-tokens/commit/7a379549c3d476a9ff461129031f5d5c655f3111)) ## [3.13.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.3...v3.13.4) (2021-08-10) - ### Bug Fixes -* add attributes in correct place ([6397e3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/6397e3bd85adc2009c5904994732d0cdf5ff07d0)) +- add attributes in correct place ([6397e3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/6397e3bd85adc2009c5904994732d0cdf5ff07d0)) ## [3.13.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.2...v3.13.3) (2021-08-10) - ### Bug Fixes -* remove px to rem transform ([09af3df](https://github.com/lyne-design-system/lyne-design-tokens/commit/09af3dfa2d4cdcf8a33118f15344da015916d21e)) -* remove px to rem transformer ([b9f2d42](https://github.com/lyne-design-system/lyne-design-tokens/commit/b9f2d4278234435aac4c7ca2eb3fcb2cf3b499e6)) +- remove px to rem transform ([09af3df](https://github.com/lyne-design-system/lyne-design-tokens/commit/09af3dfa2d4cdcf8a33118f15344da015916d21e)) +- remove px to rem transformer ([b9f2d42](https://github.com/lyne-design-system/lyne-design-tokens/commit/b9f2d4278234435aac4c7ca2eb3fcb2cf3b499e6)) ## [3.13.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.1...v3.13.2) (2021-08-06) - ### Bug Fixes -* remove link from root url ([9e2badd](https://github.com/lyne-design-system/lyne-design-tokens/commit/9e2badd78c42ea5cb114b4d43a4c1ac12b73ae2d)) +- remove link from root url ([9e2badd](https://github.com/lyne-design-system/lyne-design-tokens/commit/9e2badd78c42ea5cb114b4d43a4c1ac12b73ae2d)) ## [3.13.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.13.0...v3.13.1) (2021-08-06) - ### Bug Fixes -* make sure to break travis in catch ([984ca77](https://github.com/lyne-design-system/lyne-design-tokens/commit/984ca773101b6a8b4ae4ed7d58c0349c4994e2e9)) -* output flat json in kebab case ([229145b](https://github.com/lyne-design-system/lyne-design-tokens/commit/229145b7da35017f3cfbf3534dcd23d80e8d84dd)) -* various issues ([e2a4034](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2a40341de2c886c6d251850c1dd14f912083899)) +- make sure to break travis in catch ([984ca77](https://github.com/lyne-design-system/lyne-design-tokens/commit/984ca773101b6a8b4ae4ed7d58c0349c4994e2e9)) +- output flat json in kebab case ([229145b](https://github.com/lyne-design-system/lyne-design-tokens/commit/229145b7da35017f3cfbf3534dcd23d80e8d84dd)) +- various issues ([e2a4034](https://github.com/lyne-design-system/lyne-design-tokens/commit/e2a40341de2c886c6d251850c1dd14f912083899)) # [3.13.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.12.0...v3.13.0) (2021-08-05) - ### Features -* add group attribute to shadow tokens ([97705a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/97705a009a642c6243e1bdcc44959a33cca032dc)) +- add group attribute to shadow tokens ([97705a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/97705a009a642c6243e1bdcc44959a33cca032dc)) # [3.12.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.3...v3.12.0) (2021-08-05) - ### Bug Fixes -* remove redundant dash in property key ([b455b8b](https://github.com/lyne-design-system/lyne-design-tokens/commit/b455b8bc63ffaf733171367285d825a3585939bc)) - +- remove redundant dash in property key ([b455b8b](https://github.com/lyne-design-system/lyne-design-tokens/commit/b455b8bc63ffaf733171367285d825a3585939bc)) ### Features -* add custom format for raw json ([2eb6610](https://github.com/lyne-design-system/lyne-design-tokens/commit/2eb661086cfa216a310bff5116ede96da2e06bd1)) +- add custom format for raw json ([2eb6610](https://github.com/lyne-design-system/lyne-design-tokens/commit/2eb661086cfa216a310bff5116ede96da2e06bd1)) ## [3.11.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.2...v3.11.3) (2021-08-03) - ### Bug Fixes -* abstract baseFontSize from defaultFontSize ([9b5b067](https://github.com/lyne-design-system/lyne-design-tokens/commit/9b5b067315af62afb0949a0348f2a939a3c3f64d)) -* add implicitCategory to breakpoint ([6763b41](https://github.com/lyne-design-system/lyne-design-tokens/commit/6763b4142f1f72970102e103a627ea9dff302841)) -* add implicitCategory to icon-size ([07caaa3](https://github.com/lyne-design-system/lyne-design-tokens/commit/07caaa3ab1270be0a05a079fe9ae90a406d618c8)) -* add implicitCategory to shadow ([c4f20bb](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4f20bb5675c0c2c8901629677fe650858847d47)) -* add implicitCategory to spacing ([be384c1](https://github.com/lyne-design-system/lyne-design-tokens/commit/be384c16df5ab02279480a34e0ba3f45fe6c115a)) -* add implicitCategory to touch ([5bea4b4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5bea4b4fd5995f9ea14234b19ffdbf5a18c7cff7)) -* add implicitCategory to typo ([245fe24](https://github.com/lyne-design-system/lyne-design-tokens/commit/245fe24584c6c81ef48c5c75026978ba422f0db7)) -* change output name for css ([ae03414](https://github.com/lyne-design-system/lyne-design-tokens/commit/ae034142690820a6fd24f22299767a1f3b070bbc)) -* make base-spacing calculation directly inside spacings file ([462b925](https://github.com/lyne-design-system/lyne-design-tokens/commit/462b9251d63aec632995f0d640ad9cd9ed53caf8)) -* make sure that default font size does not get transformed to rem ([239db59](https://github.com/lyne-design-system/lyne-design-tokens/commit/239db59cfdff124e0bdc9f10efb83c33d58abae9)) -* remove shadow design tokens for buttons ([d66b964](https://github.com/lyne-design-system/lyne-design-tokens/commit/d66b9644104feee1b3b83e2e0481adbce1035a01)) -* remove spacings transform ([7e41855](https://github.com/lyne-design-system/lyne-design-tokens/commit/7e418552a37e54d013b9b72e336304c11477a30f)) -* remove spacings transform, add empty transform for pxToRem ([f502fea](https://github.com/lyne-design-system/lyne-design-tokens/commit/f502fea12b8c550c54c98d18e47671498b6da857)) -* set transform for pxToRem ([d282acd](https://github.com/lyne-design-system/lyne-design-tokens/commit/d282acd7b3e2fdecd96cb67060df5703308d5a94)) -* use baseFontSize ([91d52f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/91d52f49c845e9668d6c1daaaa28b78d1080d838)) +- abstract baseFontSize from defaultFontSize ([9b5b067](https://github.com/lyne-design-system/lyne-design-tokens/commit/9b5b067315af62afb0949a0348f2a939a3c3f64d)) +- add implicitCategory to breakpoint ([6763b41](https://github.com/lyne-design-system/lyne-design-tokens/commit/6763b4142f1f72970102e103a627ea9dff302841)) +- add implicitCategory to icon-size ([07caaa3](https://github.com/lyne-design-system/lyne-design-tokens/commit/07caaa3ab1270be0a05a079fe9ae90a406d618c8)) +- add implicitCategory to shadow ([c4f20bb](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4f20bb5675c0c2c8901629677fe650858847d47)) +- add implicitCategory to spacing ([be384c1](https://github.com/lyne-design-system/lyne-design-tokens/commit/be384c16df5ab02279480a34e0ba3f45fe6c115a)) +- add implicitCategory to touch ([5bea4b4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5bea4b4fd5995f9ea14234b19ffdbf5a18c7cff7)) +- add implicitCategory to typo ([245fe24](https://github.com/lyne-design-system/lyne-design-tokens/commit/245fe24584c6c81ef48c5c75026978ba422f0db7)) +- change output name for css ([ae03414](https://github.com/lyne-design-system/lyne-design-tokens/commit/ae034142690820a6fd24f22299767a1f3b070bbc)) +- make base-spacing calculation directly inside spacings file ([462b925](https://github.com/lyne-design-system/lyne-design-tokens/commit/462b9251d63aec632995f0d640ad9cd9ed53caf8)) +- make sure that default font size does not get transformed to rem ([239db59](https://github.com/lyne-design-system/lyne-design-tokens/commit/239db59cfdff124e0bdc9f10efb83c33d58abae9)) +- remove shadow design tokens for buttons ([d66b964](https://github.com/lyne-design-system/lyne-design-tokens/commit/d66b9644104feee1b3b83e2e0481adbce1035a01)) +- remove spacings transform ([7e41855](https://github.com/lyne-design-system/lyne-design-tokens/commit/7e418552a37e54d013b9b72e336304c11477a30f)) +- remove spacings transform, add empty transform for pxToRem ([f502fea](https://github.com/lyne-design-system/lyne-design-tokens/commit/f502fea12b8c550c54c98d18e47671498b6da857)) +- set transform for pxToRem ([d282acd](https://github.com/lyne-design-system/lyne-design-tokens/commit/d282acd7b3e2fdecd96cb67060df5703308d5a94)) +- use baseFontSize ([91d52f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/91d52f49c845e9668d6c1daaaa28b78d1080d838)) ## [3.11.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.1...v3.11.2) (2021-08-02) - ### Bug Fixes -* use css color transform for less and javascript targets ([da27faf](https://github.com/lyne-design-system/lyne-design-tokens/commit/da27faf0b10d16c7ab669fe73e0596bba5351e81)) +- use css color transform for less and javascript targets ([da27faf](https://github.com/lyne-design-system/lyne-design-tokens/commit/da27faf0b10d16c7ab669fe73e0596bba5351e81)) ## [3.11.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.11.0...v3.11.1) (2021-07-29) - ### Bug Fixes -* fake commit to trigger release ([6257820](https://github.com/lyne-design-system/lyne-design-tokens/commit/6257820902134e870bfce4b4bc35bdc8de0c5a35)) +- fake commit to trigger release ([6257820](https://github.com/lyne-design-system/lyne-design-tokens/commit/6257820902134e870bfce4b4bc35bdc8de0c5a35)) # [3.11.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.10.0...v3.11.0) (2021-07-29) - ### Bug Fixes -* add alpha colors needed for shadow design tokens ([6bd7fff](https://github.com/lyne-design-system/lyne-design-tokens/commit/6bd7fff0bdf96aaadd400acb85bfa0b90b36b0a0)) -* add default to all colors ([c60f60b](https://github.com/lyne-design-system/lyne-design-tokens/commit/c60f60b7d50e835847f3b3b76b5e3425a264f3ea)) -* use color tokens as shadow colors ([eb2b3cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb2b3cb5dc225a9c1974a7aa9dfa73a133fe2a29)) - +- add alpha colors needed for shadow design tokens ([6bd7fff](https://github.com/lyne-design-system/lyne-design-tokens/commit/6bd7fff0bdf96aaadd400acb85bfa0b90b36b0a0)) +- add default to all colors ([c60f60b](https://github.com/lyne-design-system/lyne-design-tokens/commit/c60f60b7d50e835847f3b3b76b5e3425a264f3ea)) +- use color tokens as shadow colors ([eb2b3cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb2b3cb5dc225a9c1974a7aa9dfa73a133fe2a29)) ### Features -* add button shadows ([8cf04bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/8cf04bf4d2c74c40c25992438b65dfcd36694585)) +- add button shadows ([8cf04bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/8cf04bf4d2c74c40c25992438b65dfcd36694585)) # [3.10.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.9.1...v3.10.0) (2021-07-29) - ### Features -* adding typo design tokens ([235984e](https://github.com/lyne-design-system/lyne-design-tokens/commit/235984e819033197145c2ce130aaeec61ed0bc49)) -* is adding structure for font families ([de5bad0](https://github.com/lyne-design-system/lyne-design-tokens/commit/de5bad0a2239ae679f941f5bb0e652449946f1a9)) +- adding typo design tokens ([235984e](https://github.com/lyne-design-system/lyne-design-tokens/commit/235984e819033197145c2ce130aaeec61ed0bc49)) +- is adding structure for font families ([de5bad0](https://github.com/lyne-design-system/lyne-design-tokens/commit/de5bad0a2239ae679f941f5bb0e652449946f1a9)) ## [3.9.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.9.0...v3.9.1) (2021-07-28) - ### Bug Fixes -* choosing clearer variable name ([b0ab8c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0ab8c2980eedf97fc5e50ccd0c5863374b26b18)) -* improving spacing variables output ([0056bf2](https://github.com/lyne-design-system/lyne-design-tokens/commit/0056bf2d9a601acf56d3cd85fc059699333d86f0)) +- choosing clearer variable name ([b0ab8c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0ab8c2980eedf97fc5e50ccd0c5863374b26b18)) +- improving spacing variables output ([0056bf2](https://github.com/lyne-design-system/lyne-design-tokens/commit/0056bf2d9a601acf56d3cd85fc059699333d86f0)) # [3.9.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.8.0...v3.9.0) (2021-07-28) - ### Features -* is adding breakpoint tokens ([414f2f2](https://github.com/lyne-design-system/lyne-design-tokens/commit/414f2f22012e0548c2aeb9eb440b0bb7e28b2ed9)) -* is adding minimal touch size token information ([2a0674b](https://github.com/lyne-design-system/lyne-design-tokens/commit/2a0674b9b41ce8f134159066b95ee474b541e78e)) +- is adding breakpoint tokens ([414f2f2](https://github.com/lyne-design-system/lyne-design-tokens/commit/414f2f22012e0548c2aeb9eb440b0bb7e28b2ed9)) +- is adding minimal touch size token information ([2a0674b](https://github.com/lyne-design-system/lyne-design-tokens/commit/2a0674b9b41ce8f134159066b95ee474b541e78e)) # [3.8.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.7.1...v3.8.0) (2021-07-28) - ### Features -* is adding icon-size design tokens ([f65b2ef](https://github.com/lyne-design-system/lyne-design-tokens/commit/f65b2ef11446cee48fc15644d1780841f6f52b97)) +- is adding icon-size design tokens ([f65b2ef](https://github.com/lyne-design-system/lyne-design-tokens/commit/f65b2ef11446cee48fc15644d1780841f6f52b97)) ## [3.7.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.7.0...v3.7.1) (2021-07-28) - ### Bug Fixes -* rename colors to match color names defined in figma ([b5f6b6d](https://github.com/lyne-design-system/lyne-design-tokens/commit/b5f6b6dda0d10d6e38aa53c47676e052d8ea6fa9)) +- rename colors to match color names defined in figma ([b5f6b6d](https://github.com/lyne-design-system/lyne-design-tokens/commit/b5f6b6dda0d10d6e38aa53c47676e052d8ea6fa9)) # [3.7.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.6.1...v3.7.0) (2021-07-28) - ### Features -* add design tokens for shadows ([d520d0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/d520d0f53dc68b651b9914e8b06d6289f32a2b68)) -* include design token file for shadows ([9ebaf0d](https://github.com/lyne-design-system/lyne-design-tokens/commit/9ebaf0d84623704b2b3aae11ec50c03c2bdaf3d5)) -* restructure hard/soft shadow nesting ([8de18a6](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de18a61bf6f9b0c119d890a69626262baf1aa09)) +- add design tokens for shadows ([d520d0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/d520d0f53dc68b651b9914e8b06d6289f32a2b68)) +- include design token file for shadows ([9ebaf0d](https://github.com/lyne-design-system/lyne-design-tokens/commit/9ebaf0d84623704b2b3aae11ec50c03c2bdaf3d5)) +- restructure hard/soft shadow nesting ([8de18a6](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de18a61bf6f9b0c119d890a69626262baf1aa09)) ## [3.6.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.6.0...v3.6.1) (2021-07-28) - ### Bug Fixes -* use :host selector instead of default :root ([84aed4a](https://github.com/lyne-design-system/lyne-design-tokens/commit/84aed4a042405cb6c4ce673344842be8f9327257)) +- use :host selector instead of default :root ([84aed4a](https://github.com/lyne-design-system/lyne-design-tokens/commit/84aed4a042405cb6c4ce673344842be8f9327257)) # [3.6.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.5.0...v3.6.0) (2021-07-28) - ### Features -* output css variables in scss file ([0a9249b](https://github.com/lyne-design-system/lyne-design-tokens/commit/0a9249b9f0b01065526469ab0b8af0923bcf545d)) +- output css variables in scss file ([0a9249b](https://github.com/lyne-design-system/lyne-design-tokens/commit/0a9249b9f0b01065526469ab0b8af0923bcf545d)) # [3.5.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.4.1...v3.5.0) (2021-07-27) - ### Bug Fixes -* add missing hash tag to colors ([c6136b1](https://github.com/lyne-design-system/lyne-design-tokens/commit/c6136b1a1464a38cca0e56c7a4b8c329cce1ccc2)) -* adobt new file structure ([3ebba81](https://github.com/lyne-design-system/lyne-design-tokens/commit/3ebba811d58995fd3484b6abae18ec228e07408f)) -* is taking over pr suggestions and adding additional documentation ([b8bb736](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8bb736bd0cb4d4d8f51956683eac163abd5c975)) -* remove button tokens ([18f6e2b](https://github.com/lyne-design-system/lyne-design-tokens/commit/18f6e2b1ee7256b67af946d379829937614ccf07)) -* remove chore from path, use category instead of type ([e3c0b3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3c0b3bd83e56dc932a606673edd953f864a2af9)) -* remove core folder ([dd12c26](https://github.com/lyne-design-system/lyne-design-tokens/commit/dd12c26e3433f241b19299598647ff02c514fb93)) -* remove core folder ([829e71c](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e71c83e1e0a7c97b1830f9409f2788ed210e6)) -* try to disable commit-msg hook on ci ([4cae729](https://github.com/lyne-design-system/lyne-design-tokens/commit/4cae729683cd0debfbf5db159c6ffdcd3fbca889)) -* try to skip prepare script on ci ([64117ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/64117ecb99484800542667e96c1bb390aa9cfe8a)) -* try to skip prepare script on ci ([40fab04](https://github.com/lyne-design-system/lyne-design-tokens/commit/40fab047bfd46a138fd6c88908a0bde67f4b4cc1)) - +- add missing hash tag to colors ([c6136b1](https://github.com/lyne-design-system/lyne-design-tokens/commit/c6136b1a1464a38cca0e56c7a4b8c329cce1ccc2)) +- adobt new file structure ([3ebba81](https://github.com/lyne-design-system/lyne-design-tokens/commit/3ebba811d58995fd3484b6abae18ec228e07408f)) +- is taking over pr suggestions and adding additional documentation ([b8bb736](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8bb736bd0cb4d4d8f51956683eac163abd5c975)) +- remove button tokens ([18f6e2b](https://github.com/lyne-design-system/lyne-design-tokens/commit/18f6e2b1ee7256b67af946d379829937614ccf07)) +- remove chore from path, use category instead of type ([e3c0b3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3c0b3bd83e56dc932a606673edd953f864a2af9)) +- remove core folder ([dd12c26](https://github.com/lyne-design-system/lyne-design-tokens/commit/dd12c26e3433f241b19299598647ff02c514fb93)) +- remove core folder ([829e71c](https://github.com/lyne-design-system/lyne-design-tokens/commit/829e71c83e1e0a7c97b1830f9409f2788ed210e6)) +- try to disable commit-msg hook on ci ([4cae729](https://github.com/lyne-design-system/lyne-design-tokens/commit/4cae729683cd0debfbf5db159c6ffdcd3fbca889)) +- try to skip prepare script on ci ([64117ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/64117ecb99484800542667e96c1bb390aa9cfe8a)) +- try to skip prepare script on ci ([40fab04](https://github.com/lyne-design-system/lyne-design-tokens/commit/40fab047bfd46a138fd6c88908a0bde67f4b4cc1)) ### Features -* add colors for primary button ([b2c9b10](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c9b105812d8d20576406f15518301aa3a37eb2)) -* add core colors include color attribute ([941db15](https://github.com/lyne-design-system/lyne-design-tokens/commit/941db156c3287cadfa760ec2ef90dd9543806082)) -* add design tokens for buttons ([f855ba9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f855ba9c67ce90ce52d467d97f9e79bc9a16b7b8)) -* enable outputReferences for css-variables ([4f3867b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4f3867b4eeb3a226c70ff80be04cf86c90d59a50)) +- add colors for primary button ([b2c9b10](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c9b105812d8d20576406f15518301aa3a37eb2)) +- add core colors include color attribute ([941db15](https://github.com/lyne-design-system/lyne-design-tokens/commit/941db156c3287cadfa760ec2ef90dd9543806082)) +- add design tokens for buttons ([f855ba9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f855ba9c67ce90ce52d467d97f9e79bc9a16b7b8)) +- enable outputReferences for css-variables ([4f3867b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4f3867b4eeb3a226c70ff80be04cf86c90d59a50)) ## [3.4.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.4.0...v3.4.1) (2021-06-20) - ### Bug Fixes -* disable graviton again ([85785a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/85785a00bc43616955b6b7ba9feedcece327a2b7)) -* fail build if step fails ([3fab04a](https://github.com/lyne-design-system/lyne-design-tokens/commit/3fab04ab0e09590d3575cf16c137c655b38cf8aa)) -* move prepare git step ([68055d4](https://github.com/lyne-design-system/lyne-design-tokens/commit/68055d4bbd75d1b79ca00dc563702617b86b464a)) -* use graviton again ([0c531fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0c531fe97a437973c6b8aecb11c684d4498d09e3)) +- disable graviton again ([85785a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/85785a00bc43616955b6b7ba9feedcece327a2b7)) +- fail build if step fails ([3fab04a](https://github.com/lyne-design-system/lyne-design-tokens/commit/3fab04ab0e09590d3575cf16c137c655b38cf8aa)) +- move prepare git step ([68055d4](https://github.com/lyne-design-system/lyne-design-tokens/commit/68055d4bbd75d1b79ca00dc563702617b86b464a)) +- use graviton again ([0c531fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0c531fe97a437973c6b8aecb11c684d4498d09e3)) # [3.4.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.30...v3.4.0) (2021-06-20) - ### Bug Fixes -* diable graviton ([3e6c563](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e6c563f3623999cb236e9ebfdb38f3d786dd621)) - +- diable graviton ([3e6c563](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e6c563f3623999cb236e9ebfdb38f3d786dd621)) ### Features -* use graviton architecture ([b2c5bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c5bee14bd5a467f092b572cbe3fccc81eedb31)) +- use graviton architecture ([b2c5bee](https://github.com/lyne-design-system/lyne-design-tokens/commit/b2c5bee14bd5a467f092b572cbe3fccc81eedb31)) ## [3.3.30](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.29...v3.3.30) (2021-06-03) - ### Bug Fixes -* fix red color (triggered from Figma) [skip ci] ([c473eb2](https://github.com/lyne-design-system/lyne-design-tokens/commit/c473eb2d3756d26d2c98747f20666c3530fd5855)) +- fix red color (triggered from Figma) [skip ci] ([c473eb2](https://github.com/lyne-design-system/lyne-design-tokens/commit/c473eb2d3756d26d2c98747f20666c3530fd5855)) ## [3.3.29](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.28...v3.3.29) (2021-05-06) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([c8489b8](https://github.com/lyne-design-system/lyne-design-tokens/commit/c8489b87fb270b0c4fead152a13ed390aac6a608)) +- change red to green (triggered from Figma) [skip ci] ([c8489b8](https://github.com/lyne-design-system/lyne-design-tokens/commit/c8489b87fb270b0c4fead152a13ed390aac6a608)) ## [3.3.28](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.27...v3.3.28) (2021-05-06) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([f449e8f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f449e8fd296b6795161fe144e9eb7f1a00afe73d)) +- change red to green (triggered from Figma) [skip ci] ([f449e8f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f449e8fd296b6795161fe144e9eb7f1a00afe73d)) ## [3.3.27](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.26...v3.3.27) (2021-05-06) - ### Bug Fixes -* reset default red (triggered from Figma) [skip ci] ([10d532d](https://github.com/lyne-design-system/lyne-design-tokens/commit/10d532dcd6ea588137b82316f92b131cd1dd6175)) +- reset default red (triggered from Figma) [skip ci] ([10d532d](https://github.com/lyne-design-system/lyne-design-tokens/commit/10d532dcd6ea588137b82316f92b131cd1dd6175)) ## [3.3.26](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.25...v3.3.26) (2021-05-06) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([382086a](https://github.com/lyne-design-system/lyne-design-tokens/commit/382086a47650a873b533fc6cfd08761171b0df6c)) +- test color change (triggered from Figma) [skip ci] ([382086a](https://github.com/lyne-design-system/lyne-design-tokens/commit/382086a47650a873b533fc6cfd08761171b0df6c)) ## [3.3.25](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.24...v3.3.25) (2021-05-06) - ### Bug Fixes -* set correct color (triggered from Figma) [skip ci] ([4afb7e2](https://github.com/lyne-design-system/lyne-design-tokens/commit/4afb7e23fe7945fd86559816863fd57cc764a583)) +- set correct color (triggered from Figma) [skip ci] ([4afb7e2](https://github.com/lyne-design-system/lyne-design-tokens/commit/4afb7e23fe7945fd86559816863fd57cc764a583)) ## [3.3.24](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.23...v3.3.24) (2021-05-06) - ### Bug Fixes -* test change color (triggered from Figma) [skip ci] ([00baae0](https://github.com/lyne-design-system/lyne-design-tokens/commit/00baae08cf1b4b25d6dd3f08650161637903d62f)) +- test change color (triggered from Figma) [skip ci] ([00baae0](https://github.com/lyne-design-system/lyne-design-tokens/commit/00baae08cf1b4b25d6dd3f08650161637903d62f)) ## [3.3.23](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.22...v3.3.23) (2021-05-06) - ### Bug Fixes -* change color to red (triggered from Figma) [skip ci] ([a41b17a](https://github.com/lyne-design-system/lyne-design-tokens/commit/a41b17a9b1b8f987d72b9de4f41747a839d610f0)) +- change color to red (triggered from Figma) [skip ci] ([a41b17a](https://github.com/lyne-design-system/lyne-design-tokens/commit/a41b17a9b1b8f987d72b9de4f41747a839d610f0)) ## [3.3.22](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.21...v3.3.22) (2021-05-04) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([86d9262](https://github.com/lyne-design-system/lyne-design-tokens/commit/86d9262672c6c0410758afaf7311c68daf309e53)) +- test color change (triggered from Figma) [skip ci] ([86d9262](https://github.com/lyne-design-system/lyne-design-tokens/commit/86d9262672c6c0410758afaf7311c68daf309e53)) ## [3.3.21](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.20...v3.3.21) (2021-03-04) - ### Bug Fixes -* enable dependabot after demo ([46e0970](https://github.com/lyne-design-system/lyne-design-tokens/commit/46e09700e8f6dc62b6ca3504dd4676cb9b2ad1ca)) +- enable dependabot after demo ([46e0970](https://github.com/lyne-design-system/lyne-design-tokens/commit/46e09700e8f6dc62b6ca3504dd4676cb9b2ad1ca)) ## [3.3.20](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.19...v3.3.20) (2021-03-03) - ### Bug Fixes -* revert test color change (triggered from Figma) [skip ci] ([bc803f8](https://github.com/lyne-design-system/lyne-design-tokens/commit/bc803f82a23eb1aa7e8f8056c9cf63612a792748)) +- revert test color change (triggered from Figma) [skip ci] ([bc803f8](https://github.com/lyne-design-system/lyne-design-tokens/commit/bc803f82a23eb1aa7e8f8056c9cf63612a792748)) ## [3.3.19](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.18...v3.3.19) (2021-03-02) - ### Bug Fixes -* change color from red to green (triggered from Figma) [skip ci] ([7aae9d3](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aae9d392f76c4a416f8a4c2afb5ac1e61ebb8f3)) +- change color from red to green (triggered from Figma) [skip ci] ([7aae9d3](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aae9d392f76c4a416f8a4c2afb5ac1e61ebb8f3)) ## [3.3.18](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.17...v3.3.18) (2021-03-02) - ### Bug Fixes -* change green to red again (triggered from Figma) [skip ci] ([22d9027](https://github.com/lyne-design-system/lyne-design-tokens/commit/22d90270b1c9e733c3dc36c4ff508e722c9c6aac)) +- change green to red again (triggered from Figma) [skip ci] ([22d9027](https://github.com/lyne-design-system/lyne-design-tokens/commit/22d90270b1c9e733c3dc36c4ff508e722c9c6aac)) ## [3.3.17](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.16...v3.3.17) (2021-03-02) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([ef12cf8](https://github.com/lyne-design-system/lyne-design-tokens/commit/ef12cf8fbc321145312f55e2bbda8c731aab2107)) +- change red to green (triggered from Figma) [skip ci] ([ef12cf8](https://github.com/lyne-design-system/lyne-design-tokens/commit/ef12cf8fbc321145312f55e2bbda8c731aab2107)) ## [3.3.16](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.15...v3.3.16) (2021-03-02) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([d68e3cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/d68e3cfe4c3fb1a191f34b1df2c2fddac30e9cc2)) +- test color change (triggered from Figma) [skip ci] ([d68e3cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/d68e3cfe4c3fb1a191f34b1df2c2fddac30e9cc2)) ## [3.3.15](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.14...v3.3.15) (2021-03-02) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([6e61870](https://github.com/lyne-design-system/lyne-design-tokens/commit/6e61870eaa60e7ca7235bffd9a23606e27f624cc)) +- test color change (triggered from Figma) [skip ci] ([6e61870](https://github.com/lyne-design-system/lyne-design-tokens/commit/6e61870eaa60e7ca7235bffd9a23606e27f624cc)) ## [3.3.14](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.13...v3.3.14) (2021-03-02) - ### Bug Fixes -* change green to red again (triggered from Figma) [skip ci] ([6a0a9fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a0a9fb3ee4f27035b37fbce158777bfce77a4b8)) +- change green to red again (triggered from Figma) [skip ci] ([6a0a9fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a0a9fb3ee4f27035b37fbce158777bfce77a4b8)) ## [3.3.13](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.12...v3.3.13) (2021-03-02) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([84d1011](https://github.com/lyne-design-system/lyne-design-tokens/commit/84d1011d214d05ba0debd49f969f07606a191d89)) +- change red to green (triggered from Figma) [skip ci] ([84d1011](https://github.com/lyne-design-system/lyne-design-tokens/commit/84d1011d214d05ba0debd49f969f07606a191d89)) ## [3.3.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.11...v3.3.12) (2021-03-01) - ### Bug Fixes -* change green color to red (triggered from Figma) [skip ci] ([6a83409](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a83409ed3e771fc9f5300fba920ec741178fdde)) +- change green color to red (triggered from Figma) [skip ci] ([6a83409](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a83409ed3e771fc9f5300fba920ec741178fdde)) ## [3.3.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.10...v3.3.11) (2021-03-01) - ### Bug Fixes -* change color red to green (triggered from Figma) [skip ci] ([0f891ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/0f891ee454a118df2016a30e5c8c088c345da20b)) +- change color red to green (triggered from Figma) [skip ci] ([0f891ee](https://github.com/lyne-design-system/lyne-design-tokens/commit/0f891ee454a118df2016a30e5c8c088c345da20b)) ## [3.3.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.9...v3.3.10) (2021-03-01) - ### Bug Fixes -* change green to red (triggered from Figma) [skip ci] ([fd17deb](https://github.com/lyne-design-system/lyne-design-tokens/commit/fd17debe7f93cdbd5f44d5295c9ccc1ee8c52cfb)) +- change green to red (triggered from Figma) [skip ci] ([fd17deb](https://github.com/lyne-design-system/lyne-design-tokens/commit/fd17debe7f93cdbd5f44d5295c9ccc1ee8c52cfb)) ## [3.3.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.8...v3.3.9) (2021-03-01) - ### Bug Fixes -* change color to green (triggered from Figma) [skip ci] ([e79aaae](https://github.com/lyne-design-system/lyne-design-tokens/commit/e79aaae736c27772b4044900bda110d40720bbb9)) +- change color to green (triggered from Figma) [skip ci] ([e79aaae](https://github.com/lyne-design-system/lyne-design-tokens/commit/e79aaae736c27772b4044900bda110d40720bbb9)) ## [3.3.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.7...v3.3.8) (2021-03-01) - ### Bug Fixes -* change color to red (triggered from Figma) [skip ci] ([953527d](https://github.com/lyne-design-system/lyne-design-tokens/commit/953527d40d6b95c989227bfbc66480655ebf730f)) +- change color to red (triggered from Figma) [skip ci] ([953527d](https://github.com/lyne-design-system/lyne-design-tokens/commit/953527d40d6b95c989227bfbc66480655ebf730f)) ## [3.3.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.6...v3.3.7) (2021-03-01) - ### Bug Fixes -* test color change to green (triggered from Figma) [skip ci] ([1129ffe](https://github.com/lyne-design-system/lyne-design-tokens/commit/1129ffe4a854bdd583265643929386468a8d7220)) +- test color change to green (triggered from Figma) [skip ci] ([1129ffe](https://github.com/lyne-design-system/lyne-design-tokens/commit/1129ffe4a854bdd583265643929386468a8d7220)) ## [3.3.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.5...v3.3.6) (2021-03-01) - ### Bug Fixes -* test color change (triggered from Figma) [skip ci] ([36754c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/36754c2851510fd65e0ee3f691a91550579be321)) +- test color change (triggered from Figma) [skip ci] ([36754c2](https://github.com/lyne-design-system/lyne-design-tokens/commit/36754c2851510fd65e0ee3f691a91550579be321)) ## [3.3.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.4...v3.3.5) (2021-03-01) - ### Bug Fixes -* change primary button background color (triggered from Figma) [skip ci] ([8db1ebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/8db1ebedbeb9159979766ddaca10c420b105b950)) +- change primary button background color (triggered from Figma) [skip ci] ([8db1ebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/8db1ebedbeb9159979766ddaca10c420b105b950)) ## [3.3.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.3...v3.3.4) (2021-02-27) - ### Bug Fixes -* test changing color-red-regular (triggered from Figma) [skip ci] ([646ddb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/646ddb862035a424d824e2675a04e9b00ee4a32b)) +- test changing color-red-regular (triggered from Figma) [skip ci] ([646ddb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/646ddb862035a424d824e2675a04e9b00ee4a32b)) ## [3.3.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.2...v3.3.3) (2021-02-22) - ### Bug Fixes -* make ordinary component from color rect (triggered from Figma) [skip ci] ([b0a8248](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0a82483bccee2b559d7f1e5f285beed24498e46)) +- make ordinary component from color rect (triggered from Figma) [skip ci] ([b0a8248](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0a82483bccee2b559d7f1e5f285beed24498e46)) ## [3.3.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.1...v3.3.2) (2021-02-22) - ### Bug Fixes -* make ordinary component from color rect (triggered from Figma) [skip ci] ([eafa476](https://github.com/lyne-design-system/lyne-design-tokens/commit/eafa47634aed2245f5fa001d4a637abbcf964839)) +- make ordinary component from color rect (triggered from Figma) [skip ci] ([eafa476](https://github.com/lyne-design-system/lyne-design-tokens/commit/eafa47634aed2245f5fa001d4a637abbcf964839)) ## [3.3.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.3.0...v3.3.1) (2021-02-22) - ### Bug Fixes -* add logs before pushing properites ([f15a4f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f15a4f960bc441b41bd2dfbdf5d6856df0ce4ef9)) +- add logs before pushing properites ([f15a4f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/f15a4f960bc441b41bd2dfbdf5d6856df0ce4ef9)) # [3.3.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.6...v3.3.0) (2021-02-22) - ### Features -* test workflow (triggered from Figma) [skip ci] ([92b243b](https://github.com/lyne-design-system/lyne-design-tokens/commit/92b243b356aedf0063b41cec8a0b6bf1b4fe835b)) +- test workflow (triggered from Figma) [skip ci] ([92b243b](https://github.com/lyne-design-system/lyne-design-tokens/commit/92b243b356aedf0063b41cec8a0b6bf1b4fe835b)) ## [3.2.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.5...v3.2.6) (2020-10-29) - ### Bug Fixes -* use com instead of org for travis url ([baa2582](https://github.com/lyne-design-system/lyne-design-tokens/commit/baa258252060729491244a9c237344aba8b071fd)) -* use com instead of org for travis url [skip ci] ([7fe5da5](https://github.com/lyne-design-system/lyne-design-tokens/commit/7fe5da528b50b8d2786346319b9993a0689d4d11)) +- use com instead of org for travis url ([baa2582](https://github.com/lyne-design-system/lyne-design-tokens/commit/baa258252060729491244a9c237344aba8b071fd)) +- use com instead of org for travis url [skip ci] ([7fe5da5](https://github.com/lyne-design-system/lyne-design-tokens/commit/7fe5da528b50b8d2786346319b9993a0689d4d11)) ## [3.2.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.4...v3.2.5) (2020-10-05) - ### Bug Fixes -* correct color (triggered from Figma) [skip ci] ([f1a0404](https://github.com/lyne-design-system/lyne-design-tokens/commit/f1a040493954312c7238e950a678d27d7769e924)) +- correct color (triggered from Figma) [skip ci] ([f1a0404](https://github.com/lyne-design-system/lyne-design-tokens/commit/f1a040493954312c7238e950a678d27d7769e924)) ## [3.2.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.3...v3.2.4) (2020-10-05) - ### Bug Fixes -* change accent color to green (triggered from Figma) [skip ci] ([d785289](https://github.com/lyne-design-system/lyne-design-tokens/commit/d785289472e2419dbc25e4a0118f6373d492f3c4)) +- change accent color to green (triggered from Figma) [skip ci] ([d785289](https://github.com/lyne-design-system/lyne-design-tokens/commit/d785289472e2419dbc25e4a0118f6373d492f3c4)) ## [3.2.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.2...v3.2.3) (2020-09-30) - ### Bug Fixes -* fix white color (triggered from Figma) [skip ci] ([02b11b5](https://github.com/lyne-design-system/lyne-design-tokens/commit/02b11b5e7865f5413eac37c824c3bbcb4afe6b1e)) +- fix white color (triggered from Figma) [skip ci] ([02b11b5](https://github.com/lyne-design-system/lyne-design-tokens/commit/02b11b5e7865f5413eac37c824c3bbcb4afe6b1e)) ## [3.2.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.1...v3.2.2) (2020-09-30) - ### Bug Fixes -* test change white color to gray (triggered from Figma) [skip ci] ([288d601](https://github.com/lyne-design-system/lyne-design-tokens/commit/288d6019550794f03a477fa0dc24188062e112cc)) +- test change white color to gray (triggered from Figma) [skip ci] ([288d601](https://github.com/lyne-design-system/lyne-design-tokens/commit/288d6019550794f03a477fa0dc24188062e112cc)) ## [3.2.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.2.0...v3.2.1) (2020-09-24) - ### Bug Fixes -* install netlify ([56861c3](https://github.com/lyne-design-system/lyne-design-tokens/commit/56861c30b54f1ce0f00208a6029ad91af14062e0)) +- install netlify ([56861c3](https://github.com/lyne-design-system/lyne-design-tokens/commit/56861c30b54f1ce0f00208a6029ad91af14062e0)) # [3.2.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.12...v3.2.0) (2020-09-24) - ### Bug Fixes -* remove rimraf ([9f68a6b](https://github.com/lyne-design-system/lyne-design-tokens/commit/9f68a6b1c4f266843788e2dfff8bb89a9f8d4828)) - +- remove rimraf ([9f68a6b](https://github.com/lyne-design-system/lyne-design-tokens/commit/9f68a6b1c4f266843788e2dfff8bb89a9f8d4828)) ### Features -* add files to generate and publish cdn ressources ([868fe5e](https://github.com/lyne-design-system/lyne-design-tokens/commit/868fe5e4aff51f73fe104ab0a9cebcaa256b57c4)) +- add files to generate and publish cdn ressources ([868fe5e](https://github.com/lyne-design-system/lyne-design-tokens/commit/868fe5e4aff51f73fe104ab0a9cebcaa256b57c4)) ## [3.1.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.11...v3.1.12) (2020-09-21) - ### Bug Fixes -* revert color to white (triggered from Figma) [skip ci] ([4a2aa39](https://github.com/lyne-design-system/lyne-design-tokens/commit/4a2aa39311853d52cc7d2386dd0fb2020146ba56)) +- revert color to white (triggered from Figma) [skip ci] ([4a2aa39](https://github.com/lyne-design-system/lyne-design-tokens/commit/4a2aa39311853d52cc7d2386dd0fb2020146ba56)) ## [3.1.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.10...v3.1.11) (2020-09-21) - ### Bug Fixes -* change (triggered from Figma) [skip ci] ([263edc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/263edc4b0048e5765ba1ca5db2e3d00ab40f2305)) +- change (triggered from Figma) [skip ci] ([263edc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/263edc4b0048e5765ba1ca5db2e3d00ab40f2305)) ## [3.1.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.9...v3.1.10) (2020-09-14) - ### Bug Fixes -* revert green to red (triggered from Figma) [skip ci] ([7aebebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aebebe659809f17e2db7a8346f4aa29966f5601)) +- revert green to red (triggered from Figma) [skip ci] ([7aebebe](https://github.com/lyne-design-system/lyne-design-tokens/commit/7aebebe659809f17e2db7a8346f4aa29966f5601)) ## [3.1.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.8...v3.1.9) (2020-09-14) - ### Bug Fixes -* fake commit to test release ([2f8e04e](https://github.com/lyne-design-system/lyne-design-tokens/commit/2f8e04e63c4a706632cb5cdd3641a0d394711e1c)) +- fake commit to test release ([2f8e04e](https://github.com/lyne-design-system/lyne-design-tokens/commit/2f8e04e63c4a706632cb5cdd3641a0d394711e1c)) ## [3.1.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.7...v3.1.8) (2020-09-14) - ### Bug Fixes -* change red color to green (triggered from Figma) [skip ci] ([e5bffa5](https://github.com/lyne-design-system/lyne-design-tokens/commit/e5bffa5fe6e9a268d3cb19fbcbdcd52e3d77706d)) +- change red color to green (triggered from Figma) [skip ci] ([e5bffa5](https://github.com/lyne-design-system/lyne-design-tokens/commit/e5bffa5fe6e9a268d3cb19fbcbdcd52e3d77706d)) ## [3.1.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.6...v3.1.7) (2020-09-13) - ### Bug Fixes -* update deps ([6717833](https://github.com/lyne-design-system/lyne-design-tokens/commit/67178336d86a738a6fccfb2c5450a9bf04b6076b)) -* update travis trigger ([776651b](https://github.com/lyne-design-system/lyne-design-tokens/commit/776651be7d3b529083d53f4279015bb6a6923423)) +- update deps ([6717833](https://github.com/lyne-design-system/lyne-design-tokens/commit/67178336d86a738a6fccfb2c5450a9bf04b6076b)) +- update travis trigger ([776651b](https://github.com/lyne-design-system/lyne-design-tokens/commit/776651be7d3b529083d53f4279015bb6a6923423)) ## [3.1.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.5...v3.1.6) (2020-09-13) - ### Bug Fixes -* update figma api helper ([67e1765](https://github.com/lyne-design-system/lyne-design-tokens/commit/67e1765d53d2b47f924869a0d19b39c27c7a2994)) -* update lyne api helper ([cbc7fbf](https://github.com/lyne-design-system/lyne-design-tokens/commit/cbc7fbfb30120592e6d73e5fd973a4098c29f63f)) +- update figma api helper ([67e1765](https://github.com/lyne-design-system/lyne-design-tokens/commit/67e1765d53d2b47f924869a0d19b39c27c7a2994)) +- update lyne api helper ([cbc7fbf](https://github.com/lyne-design-system/lyne-design-tokens/commit/cbc7fbfb30120592e6d73e5fd973a4098c29f63f)) ## [3.1.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.4...v3.1.5) (2020-09-12) - ### Bug Fixes -* use figma api helper (fake fix commit to trigger release) ([ff40124](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff4012429c44e802b5037c72cb8da8f68971276b)) +- use figma api helper (fake fix commit to trigger release) ([ff40124](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff4012429c44e802b5037c72cb8da8f68971276b)) ## [3.1.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.3...v3.1.4) (2020-09-10) - ### Bug Fixes -* changed Headline 1 font-size from 64px to 40px (triggered from Figma) [skip ci] ([3e350bc](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e350bc560935a3f55205fd14d8d98356b765acc)) +- changed Headline 1 font-size from 64px to 40px (triggered from Figma) [skip ci] ([3e350bc](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e350bc560935a3f55205fd14d8d98356b765acc)) ## [3.1.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.2...v3.1.3) (2020-09-09) - ### Bug Fixes -* test pipeline (triggered from Figma) [skip ci] ([8d7bdd3](https://github.com/lyne-design-system/lyne-design-tokens/commit/8d7bdd316502ea3b2c7bb5e1ff56ab79adc05e71)) +- test pipeline (triggered from Figma) [skip ci] ([8d7bdd3](https://github.com/lyne-design-system/lyne-design-tokens/commit/8d7bdd316502ea3b2c7bb5e1ff56ab79adc05e71)) ## [3.1.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.1...v3.1.2) (2020-09-09) - ### Bug Fixes -* changed font face to SBBWeb, added border-radius frame with 4 radius variants (triggered from Figma) [skip ci] ([262ddb4](https://github.com/lyne-design-system/lyne-design-tokens/commit/262ddb414fd5853e33b48b7387dd49d838e5fdd9)) +- changed font face to SBBWeb, added border-radius frame with 4 radius variants (triggered from Figma) [skip ci] ([262ddb4](https://github.com/lyne-design-system/lyne-design-tokens/commit/262ddb414fd5853e33b48b7387dd49d838e5fdd9)) ## [3.1.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.1.0...v3.1.1) (2020-09-09) - ### Bug Fixes -* update helper trigger travis ([622efb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/622efb89f13b6dd3c0dc16918cd5ccfda458f57a)) -* update helper trigger travis [skip ci] ([6c5c1e3](https://github.com/lyne-design-system/lyne-design-tokens/commit/6c5c1e37008fd13fc383e3d92a0b08c02354e29f)) +- update helper trigger travis ([622efb8](https://github.com/lyne-design-system/lyne-design-tokens/commit/622efb89f13b6dd3c0dc16918cd5ccfda458f57a)) +- update helper trigger travis [skip ci] ([6c5c1e3](https://github.com/lyne-design-system/lyne-design-tokens/commit/6c5c1e37008fd13fc383e3d92a0b08c02354e29f)) # [3.1.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v3.0.0...v3.1.0) (2020-09-08) - ### Features -* add real sbb colors and add correct names (triggered from Figma) [skip ci] ([2978c79](https://github.com/lyne-design-system/lyne-design-tokens/commit/2978c792f1d81cb3a19dfd60b7845718a21d1d9e)) +- add real sbb colors and add correct names (triggered from Figma) [skip ci] ([2978c79](https://github.com/lyne-design-system/lyne-design-tokens/commit/2978c792f1d81cb3a19dfd60b7845718a21d1d9e)) # [3.0.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.3...v3.0.0) (2020-09-08) - ### Bug Fixes -* try workflow for major change ([cebca6a](https://github.com/lyne-design-system/lyne-design-tokens/commit/cebca6a5a184989b22a667144d5c1283d256af2e)) - +- try workflow for major change ([cebca6a](https://github.com/lyne-design-system/lyne-design-tokens/commit/cebca6a5a184989b22a667144d5c1283d256af2e)) ### BREAKING CHANGES -* test major release (triggered from Figma) [skip ci] +- test major release (triggered from Figma) [skip ci] ## [2.7.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.2...v2.7.3) (2020-09-07) - ### Bug Fixes -* remove files and configs for icons workflow ([dc8c36d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc8c36df3f878534ff874fc7fcdc2cd5ee2652ac)) +- remove files and configs for icons workflow ([dc8c36d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc8c36df3f878534ff874fc7fcdc2cd5ee2652ac)) ## [2.7.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.1...v2.7.2) (2020-09-07) - ### Bug Fixes -* test pipeline again (triggered from Figma) [skip ci] ([dfb4e36](https://github.com/lyne-design-system/lyne-design-tokens/commit/dfb4e36f75603b1279f39ee9bab42332bb535036)) +- test pipeline again (triggered from Figma) [skip ci] ([dfb4e36](https://github.com/lyne-design-system/lyne-design-tokens/commit/dfb4e36f75603b1279f39ee9bab42332bb535036)) ## [2.7.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.7.0...v2.7.1) (2020-09-07) - ### Bug Fixes -* test trigger (triggered from Figma) [skip ci] ([4306238](https://github.com/lyne-design-system/lyne-design-tokens/commit/43062382cb7d186da86558fd50d0f4f0ff574a2a)) +- test trigger (triggered from Figma) [skip ci] ([4306238](https://github.com/lyne-design-system/lyne-design-tokens/commit/43062382cb7d186da86558fd50d0f4f0ff574a2a)) # [2.7.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.6.0...v2.7.0) (2020-09-07) - ### Features -* save info file and move icons to files folder ([659048c](https://github.com/lyne-design-system/lyne-design-tokens/commit/659048c85875d427b84caeb092e50cb9802986c2)) +- save info file and move icons to files folder ([659048c](https://github.com/lyne-design-system/lyne-design-tokens/commit/659048c85875d427b84caeb092e50cb9802986c2)) # [2.6.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.17...v2.6.0) (2020-09-07) - ### Features -* add sample icons after extract ([c264873](https://github.com/lyne-design-system/lyne-design-tokens/commit/c26487393db94041431c7ed9dc7abb4a125a9b44)) -* add second workflow to get svg icons from figma api ([e3874b6](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3874b6273f6bad137c4705e2b6cacfb0d9f2dca)) -* add workflow to save svg's ([e0a1ad3](https://github.com/lyne-design-system/lyne-design-tokens/commit/e0a1ad31733b8022068bddd948c0693e2ae893cb)) -* write svg's to folder ([618f457](https://github.com/lyne-design-system/lyne-design-tokens/commit/618f45715eee9ceb0daa82893eb29e12d5225392)) -* write svg's to folder ([6b99e59](https://github.com/lyne-design-system/lyne-design-tokens/commit/6b99e59c2b655d6d4afa253158ef8426b1479a2d)) +- add sample icons after extract ([c264873](https://github.com/lyne-design-system/lyne-design-tokens/commit/c26487393db94041431c7ed9dc7abb4a125a9b44)) +- add second workflow to get svg icons from figma api ([e3874b6](https://github.com/lyne-design-system/lyne-design-tokens/commit/e3874b6273f6bad137c4705e2b6cacfb0d9f2dca)) +- add workflow to save svg's ([e0a1ad3](https://github.com/lyne-design-system/lyne-design-tokens/commit/e0a1ad31733b8022068bddd948c0693e2ae893cb)) +- write svg's to folder ([618f457](https://github.com/lyne-design-system/lyne-design-tokens/commit/618f45715eee9ceb0daa82893eb29e12d5225392)) +- write svg's to folder ([6b99e59](https://github.com/lyne-design-system/lyne-design-tokens/commit/6b99e59c2b655d6d4afa253158ef8426b1479a2d)) ## [2.5.17](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.16...v2.5.17) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([3e3d1cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e3d1cb07021f10604547fac4be7584019ce0a5b)) +- test (triggered from Figma) [skip ci] ([3e3d1cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/3e3d1cb07021f10604547fac4be7584019ce0a5b)) ## [2.5.16](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.15...v2.5.16) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([4883599](https://github.com/lyne-design-system/lyne-design-tokens/commit/4883599d5d8fc53b8d913b5193ecc247df101132)) +- test (triggered from Figma) [skip ci] ([4883599](https://github.com/lyne-design-system/lyne-design-tokens/commit/4883599d5d8fc53b8d913b5193ecc247df101132)) ## [2.5.15](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.14...v2.5.15) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([f67b9c0](https://github.com/lyne-design-system/lyne-design-tokens/commit/f67b9c0b06ecd5d0bd672932061e6c73c3298518)) +- test (triggered from Figma) [skip ci] ([f67b9c0](https://github.com/lyne-design-system/lyne-design-tokens/commit/f67b9c0b06ecd5d0bd672932061e6c73c3298518)) ## [2.5.14](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.13...v2.5.14) (2020-09-07) - ### Bug Fixes -* test pipeline (triggered from Figma) [skip ci] ([c3332ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/c3332ecca9ec465cd50611b6dd13b38cd3f0301b)) +- test pipeline (triggered from Figma) [skip ci] ([c3332ec](https://github.com/lyne-design-system/lyne-design-tokens/commit/c3332ecca9ec465cd50611b6dd13b38cd3f0301b)) ## [2.5.13](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.12...v2.5.13) (2020-09-07) - ### Bug Fixes -* add type condition ([8726b77](https://github.com/lyne-design-system/lyne-design-tokens/commit/8726b773df8a5b09567ed338ad79d6e4178a62a1)) -* try to fix condition ([b8c88fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8c88fb67316a1a67496a7b03c27f918028180c0)) -* try to fix condition ([a6e1a79](https://github.com/lyne-design-system/lyne-design-tokens/commit/a6e1a7994dc472636aa41d39b940c1a03df9612f)) +- add type condition ([8726b77](https://github.com/lyne-design-system/lyne-design-tokens/commit/8726b773df8a5b09567ed338ad79d6e4178a62a1)) +- try to fix condition ([b8c88fb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8c88fb67316a1a67496a7b03c27f918028180c0)) +- try to fix condition ([a6e1a79](https://github.com/lyne-design-system/lyne-design-tokens/commit/a6e1a7994dc472636aa41d39b940c1a03df9612f)) ## [2.5.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.11...v2.5.12) (2020-09-07) - ### Bug Fixes -* remove stage ([c4ab848](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4ab848adb2b5fde2545af31d5564d5e2e53f73d)) +- remove stage ([c4ab848](https://github.com/lyne-design-system/lyne-design-tokens/commit/c4ab848adb2b5fde2545af31d5564d5e2e53f73d)) ## [2.5.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.10...v2.5.11) (2020-09-07) - ### Bug Fixes -* add second build stage for icons ([69e141f](https://github.com/lyne-design-system/lyne-design-tokens/commit/69e141f2483c48cdce3f255751c2f260cb70de23)) +- add second build stage for icons ([69e141f](https://github.com/lyne-design-system/lyne-design-tokens/commit/69e141f2483c48cdce3f255751c2f260cb70de23)) ## [2.5.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.9...v2.5.10) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([13d21b0](https://github.com/lyne-design-system/lyne-design-tokens/commit/13d21b090af723a09f042321f9482ecba239147a)) +- test (triggered from Figma) [skip ci] ([13d21b0](https://github.com/lyne-design-system/lyne-design-tokens/commit/13d21b090af723a09f042321f9482ecba239147a)) ## [2.5.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.8...v2.5.9) (2020-09-07) - ### Bug Fixes -* test (triggered from Figma) [skip ci] ([d35bae6](https://github.com/lyne-design-system/lyne-design-tokens/commit/d35bae6256fd2797d0a3269c48546be535e954cf)) +- test (triggered from Figma) [skip ci] ([d35bae6](https://github.com/lyne-design-system/lyne-design-tokens/commit/d35bae6256fd2797d0a3269c48546be535e954cf)) ## [2.5.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.7...v2.5.8) (2020-09-07) - ### Bug Fixes -* test pipeline (triggered from Figma) [skip ci] ([d4bb071](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4bb07105b1dd2f8dedafaaf31f89c7134c64905)) +- test pipeline (triggered from Figma) [skip ci] ([d4bb071](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4bb07105b1dd2f8dedafaaf31f89c7134c64905)) ## [2.5.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.6...v2.5.7) (2020-09-03) - ### Bug Fixes -* revert green to red (triggered from Figma) [skip ci] ([89d4031](https://github.com/lyne-design-system/lyne-design-tokens/commit/89d4031d100883657ebcc95b69c61cd3987e627f)) +- revert green to red (triggered from Figma) [skip ci] ([89d4031](https://github.com/lyne-design-system/lyne-design-tokens/commit/89d4031d100883657ebcc95b69c61cd3987e627f)) ## [2.5.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.5...v2.5.6) (2020-09-03) - ### Bug Fixes -* change red to green (triggered from Figma) [skip ci] ([1e2c27e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1e2c27ef75d2109ba007c1181cbc008d33e3a3ee)) +- change red to green (triggered from Figma) [skip ci] ([1e2c27e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1e2c27ef75d2109ba007c1181cbc008d33e3a3ee)) ## [2.5.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.4...v2.5.5) (2020-09-02) - ### Bug Fixes -* revert test-change (triggered from Figma) [skip ci] ([252b0cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/252b0cf133ca435bdfefcf39e0ae15563a35995c)) +- revert test-change (triggered from Figma) [skip ci] ([252b0cf](https://github.com/lyne-design-system/lyne-design-tokens/commit/252b0cf133ca435bdfefcf39e0ae15563a35995c)) ## [2.5.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.3...v2.5.4) (2020-09-02) - ### Bug Fixes -* test workflow before review meeting (triggered from Figma) [skip ci] ([1f9a33e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f9a33ed0a98c6b14acea88ce42906b53fd79701)) +- test workflow before review meeting (triggered from Figma) [skip ci] ([1f9a33e](https://github.com/lyne-design-system/lyne-design-tokens/commit/1f9a33ed0a98c6b14acea88ce42906b53fd79701)) ## [2.5.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.2...v2.5.3) (2020-08-31) - ### Bug Fixes -* try worflow 2 (triggered from Figma) [skip ci] ([d523dc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d523dc4616c477669319ebebe0b464926bf08463)) +- try worflow 2 (triggered from Figma) [skip ci] ([d523dc4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d523dc4616c477669319ebebe0b464926bf08463)) ## [2.5.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.1...v2.5.2) (2020-08-31) - ### Bug Fixes -* revert color red-regular from pink-ish back to red (triggered from Figma) [skip ci] ([36931e5](https://github.com/lyne-design-system/lyne-design-tokens/commit/36931e5851374c5d6ee87a0a66525c2a170b686f)) +- revert color red-regular from pink-ish back to red (triggered from Figma) [skip ci] ([36931e5](https://github.com/lyne-design-system/lyne-design-tokens/commit/36931e5851374c5d6ee87a0a66525c2a170b686f)) ## [2.5.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.5.0...v2.5.1) (2020-08-31) - ### Bug Fixes -* change red-regular to pink-ish (triggered from Figma) [skip ci] ([ff8c692](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff8c69230df8d3d00e54d421e6f651394843a176)) +- change red-regular to pink-ish (triggered from Figma) [skip ci] ([ff8c692](https://github.com/lyne-design-system/lyne-design-tokens/commit/ff8c69230df8d3d00e54d421e6f651394843a176)) # [2.5.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.4.1...v2.5.0) (2020-08-27) - ### Features -* revert red color (triggered from Figma) [skip ci] ([f6a6d98](https://github.com/lyne-design-system/lyne-design-tokens/commit/f6a6d98783acd6f42cc17f97a36a1a5fbd4597d1)) +- revert red color (triggered from Figma) [skip ci] ([f6a6d98](https://github.com/lyne-design-system/lyne-design-tokens/commit/f6a6d98783acd6f42cc17f97a36a1a5fbd4597d1)) ## [2.4.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.4.0...v2.4.1) (2020-08-27) - ### Bug Fixes -* change red color (triggered from Figma) [skip ci] ([3f0cc45](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f0cc45a09a398e72232011c52e6913c277fb124)) +- change red color (triggered from Figma) [skip ci] ([3f0cc45](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f0cc45a09a398e72232011c52e6913c277fb124)) # [2.4.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.7...v2.4.0) (2020-08-27) - ### Features -* revert green to red (triggered from Figma) [skip ci] ([e07d67d](https://github.com/lyne-design-system/lyne-design-tokens/commit/e07d67da7f77beafcce712d2d3023025db868bfc)) +- revert green to red (triggered from Figma) [skip ci] ([e07d67d](https://github.com/lyne-design-system/lyne-design-tokens/commit/e07d67da7f77beafcce712d2d3023025db868bfc)) ## [2.3.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.6...v2.3.7) (2020-08-27) - ### Bug Fixes -* test change red to green (triggered from Figma) [skip ci] ([7ecf3f6](https://github.com/lyne-design-system/lyne-design-tokens/commit/7ecf3f63d0db4d4d6a1edbb5d7ff6e33774b1bdf)) +- test change red to green (triggered from Figma) [skip ci] ([7ecf3f6](https://github.com/lyne-design-system/lyne-design-tokens/commit/7ecf3f63d0db4d4d6a1edbb5d7ff6e33774b1bdf)) ## [2.3.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.5...v2.3.6) (2020-08-27) - ### Bug Fixes -* use data instead of body attribute in axios request ([4981d60](https://github.com/lyne-design-system/lyne-design-tokens/commit/4981d605879b5fde1ed92457c0c6dfaf88e6a60e)) +- use data instead of body attribute in axios request ([4981d60](https://github.com/lyne-design-system/lyne-design-tokens/commit/4981d605879b5fde1ed92457c0c6dfaf88e6a60e)) ## [2.3.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.4...v2.3.5) (2020-08-27) - ### Bug Fixes -* add log ([6859a20](https://github.com/lyne-design-system/lyne-design-tokens/commit/6859a203d96c7a8a05e6acf3b1de70bea616ec30)) +- add log ([6859a20](https://github.com/lyne-design-system/lyne-design-tokens/commit/6859a203d96c7a8a05e6acf3b1de70bea616ec30)) ## [2.3.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.3...v2.3.4) (2020-08-27) - ### Bug Fixes -* try worflow 2 (triggered from Figma) [skip ci] ([b6565c6](https://github.com/lyne-design-system/lyne-design-tokens/commit/b6565c67b1cf8bf7bb71667ce43b410d5c04d9c0)) +- try worflow 2 (triggered from Figma) [skip ci] ([b6565c6](https://github.com/lyne-design-system/lyne-design-tokens/commit/b6565c67b1cf8bf7bb71667ce43b410d5c04d9c0)) ## [2.3.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.2...v2.3.3) (2020-08-27) - ### Bug Fixes -* trying out new workflow, should update lyne-components (triggered from Figma) [skip ci] ([8b1013f](https://github.com/lyne-design-system/lyne-design-tokens/commit/8b1013fe6f4eb1c122e72167c71d7a76c26b941d)) +- trying out new workflow, should update lyne-components (triggered from Figma) [skip ci] ([8b1013f](https://github.com/lyne-design-system/lyne-design-tokens/commit/8b1013fe6f4eb1c122e72167c71d7a76c26b941d)) ## [2.3.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.1...v2.3.2) (2020-08-26) - ### Bug Fixes -* update vulnerable deps ([588acfe](https://github.com/lyne-design-system/lyne-design-tokens/commit/588acfe5c33cfa617cd10472992abff734067a06)) +- update vulnerable deps ([588acfe](https://github.com/lyne-design-system/lyne-design-tokens/commit/588acfe5c33cfa617cd10472992abff734067a06)) ## [2.3.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.3.0...v2.3.1) (2020-08-26) - ### Bug Fixes -* update vulerable deps ([47f3b1b](https://github.com/lyne-design-system/lyne-design-tokens/commit/47f3b1b657dc81ea33dbd493ece4e6eeb110b070)) +- update vulerable deps ([47f3b1b](https://github.com/lyne-design-system/lyne-design-tokens/commit/47f3b1b657dc81ea33dbd493ece4e6eeb110b070)) # [2.3.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.2.0...v2.3.0) (2020-08-26) - ### Features -* add blue (triggered from Figma) [skip ci] ([a356544](https://github.com/lyne-design-system/lyne-design-tokens/commit/a35654403e433c0f18dfb32ee77f9d45e15b7100)) +- add blue (triggered from Figma) [skip ci] ([a356544](https://github.com/lyne-design-system/lyne-design-tokens/commit/a35654403e433c0f18dfb32ee77f9d45e15b7100)) # [2.2.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.5...v2.2.0) (2020-08-25) - ### Features -* revert green to red color (triggered from Figma) [skip ci] ([bd1cce2](https://github.com/lyne-design-system/lyne-design-tokens/commit/bd1cce2ec45c9ff5f44e9ede911a5b407d11044f)) +- revert green to red color (triggered from Figma) [skip ci] ([bd1cce2](https://github.com/lyne-design-system/lyne-design-tokens/commit/bd1cce2ec45c9ff5f44e9ede911a5b407d11044f)) ## [2.1.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.4...v2.1.5) (2020-08-25) - ### Bug Fixes -* test change red to green (triggered from Figma) [skip ci] ([9066722](https://github.com/lyne-design-system/lyne-design-tokens/commit/9066722aad54dc4122e5c87cc280dfdf6af636f5)) +- test change red to green (triggered from Figma) [skip ci] ([9066722](https://github.com/lyne-design-system/lyne-design-tokens/commit/9066722aad54dc4122e5c87cc280dfdf6af636f5)) ## [2.1.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.3...v2.1.4) (2020-08-25) - ### Bug Fixes -* änderung grösse headline (triggered from Figma) [skip ci] ([eb80849](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb80849fc062e5200a4bf843879c3f673fc2f2b4)) +- änderung grösse headline (triggered from Figma) [skip ci] ([eb80849](https://github.com/lyne-design-system/lyne-design-tokens/commit/eb80849fc062e5200a4bf843879c3f673fc2f2b4)) ## [2.1.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.2...v2.1.3) (2020-08-25) - ### Bug Fixes -* new size headline level 1 (triggered from Figma) [skip ci] ([52c86a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/52c86a093979644791312e98dd28ceead6f6f7bd)) +- new size headline level 1 (triggered from Figma) [skip ci] ([52c86a0](https://github.com/lyne-design-system/lyne-design-tokens/commit/52c86a093979644791312e98dd28ceead6f6f7bd)) ## [2.1.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.1...v2.1.2) (2020-08-25) - ### Bug Fixes -* fix color-red-dark (triggered from Figma) [skip ci] ([0337d50](https://github.com/lyne-design-system/lyne-design-tokens/commit/0337d508ea233ca7478a527c5bee12149436341f)) +- fix color-red-dark (triggered from Figma) [skip ci] ([0337d50](https://github.com/lyne-design-system/lyne-design-tokens/commit/0337d508ea233ca7478a527c5bee12149436341f)) ## [2.1.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.1.0...v2.1.1) (2020-08-25) - ### Bug Fixes -* change color red dark (triggered from Figma) [skip ci] ([e698e0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/e698e0fad7f81ecbc18ddda10a550b3540ae40c9)) +- change color red dark (triggered from Figma) [skip ci] ([e698e0f](https://github.com/lyne-design-system/lyne-design-tokens/commit/e698e0fad7f81ecbc18ddda10a550b3540ae40c9)) # [2.1.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v2.0.0...v2.1.0) (2020-08-25) - ### Features -* add feature to ignore frame in figma ([76c0f38](https://github.com/lyne-design-system/lyne-design-tokens/commit/76c0f3869a851a07bbf1f446f7df6360a690e758)) +- add feature to ignore frame in figma ([76c0f38](https://github.com/lyne-design-system/lyne-design-tokens/commit/76c0f3869a851a07bbf1f446f7df6360a690e758)) # [2.0.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.13.0...v2.0.0) (2020-08-25) - ### chore -* added description ([b8ae982](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8ae982afc0656ac0eb424464c5f7e4cf9aae94a)) - +- added description ([b8ae982](https://github.com/lyne-design-system/lyne-design-tokens/commit/b8ae982afc0656ac0eb424464c5f7e4cf9aae94a)) ### BREAKING CHANGES -* test breaking change, should release 2.0.0 (triggered from Figma) [skip ci] +- test breaking change, should release 2.0.0 (triggered from Figma) [skip ci] # [1.13.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.19...v1.13.0) (2020-08-25) - ### Features -* test feature, should release 1.13.0 (triggered from Figma) [skip ci] ([6a09a98](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a09a989f274af594f8d075c11022f98b763fb5c)) +- test feature, should release 1.13.0 (triggered from Figma) [skip ci] ([6a09a98](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a09a989f274af594f8d075c11022f98b763fb5c)) ## [1.12.19](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.18...v1.12.19) (2020-08-25) - ### Bug Fixes -* test fix from figma, should release 1.12.19 (triggered from Figma) [skip ci] ([3f92366](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f92366311f771a6f40d6e0083a3e4617d2731c8)) +- test fix from figma, should release 1.12.19 (triggered from Figma) [skip ci] ([3f92366](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f92366311f771a6f40d6e0083a3e4617d2731c8)) ## [1.12.18](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.17...v1.12.18) (2020-08-25) - ### Bug Fixes -* fix error message ([4d2edef](https://github.com/lyne-design-system/lyne-design-tokens/commit/4d2edef8697124d5e56448e75cfe906d58dd2d75)) -* get travis commit message for job id from api ([3b24fd6](https://github.com/lyne-design-system/lyne-design-tokens/commit/3b24fd610c12bb83a806a9598eac8735fe510764)) +- fix error message ([4d2edef](https://github.com/lyne-design-system/lyne-design-tokens/commit/4d2edef8697124d5e56448e75cfe906d58dd2d75)) +- get travis commit message for job id from api ([3b24fd6](https://github.com/lyne-design-system/lyne-design-tokens/commit/3b24fd610c12bb83a806a9598eac8735fe510764)) ## [1.12.17](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.16...v1.12.17) (2020-08-24) - ### Bug Fixes -* add skip ci instruction ([dca9a25](https://github.com/lyne-design-system/lyne-design-tokens/commit/dca9a2585dd4b93c62909ebdeb889b68b5cf4b7e)) +- add skip ci instruction ([dca9a25](https://github.com/lyne-design-system/lyne-design-tokens/commit/dca9a2585dd4b93c62909ebdeb889b68b5cf4b7e)) ## [1.12.16](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.15...v1.12.16) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([8311d25](https://github.com/lyne-design-system/lyne-design-tokens/commit/8311d25c1b0ecdb96963805629695baf0be55e22)) +- figma library update [skip ci] ([8311d25](https://github.com/lyne-design-system/lyne-design-tokens/commit/8311d25c1b0ecdb96963805629695baf0be55e22)) ## [1.12.15](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.14...v1.12.15) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([d34ed76](https://github.com/lyne-design-system/lyne-design-tokens/commit/d34ed76b97b5c3793ba7a6ce63083ff2780d0492)) +- figma library update [skip ci] ([d34ed76](https://github.com/lyne-design-system/lyne-design-tokens/commit/d34ed76b97b5c3793ba7a6ce63083ff2780d0492)) ## [1.12.14](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.13...v1.12.14) (2020-08-24) - ### Bug Fixes -* add linter, fix linting styles ([5a0040a](https://github.com/lyne-design-system/lyne-design-tokens/commit/5a0040a577f97da3cd305fc23f4b815c524760ff)) -* figma library update [skip ci] ([8dffac0](https://github.com/lyne-design-system/lyne-design-tokens/commit/8dffac04850277125da5d399163536acb082aac1)) +- add linter, fix linting styles ([5a0040a](https://github.com/lyne-design-system/lyne-design-tokens/commit/5a0040a577f97da3cd305fc23f4b815c524760ff)) +- figma library update [skip ci] ([8dffac0](https://github.com/lyne-design-system/lyne-design-tokens/commit/8dffac04850277125da5d399163536acb082aac1)) ## [1.12.13](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.12...v1.12.13) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([4df7b0e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4df7b0e39284cba930915f7838c1287b681a5e6f)) +- figma library update [skip ci] ([4df7b0e](https://github.com/lyne-design-system/lyne-design-tokens/commit/4df7b0e39284cba930915f7838c1287b681a5e6f)) ## [1.12.12](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.11...v1.12.12) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([6207da0](https://github.com/lyne-design-system/lyne-design-tokens/commit/6207da02b3783b5038517d2b38b23edc72512037)) +- figma library update [skip ci] ([6207da0](https://github.com/lyne-design-system/lyne-design-tokens/commit/6207da02b3783b5038517d2b38b23edc72512037)) ## [1.12.11](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.10...v1.12.11) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([c9cefe6](https://github.com/lyne-design-system/lyne-design-tokens/commit/c9cefe6781b3d07e335804ae42edf149b253a748)) +- figma library update [skip ci] ([c9cefe6](https://github.com/lyne-design-system/lyne-design-tokens/commit/c9cefe6781b3d07e335804ae42edf149b253a748)) ## [1.12.10](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.9...v1.12.10) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([73c1dad](https://github.com/lyne-design-system/lyne-design-tokens/commit/73c1dade08a4139e55d0771923eb5d109caf5282)) +- figma library update [skip ci] ([73c1dad](https://github.com/lyne-design-system/lyne-design-tokens/commit/73c1dade08a4139e55d0771923eb5d109caf5282)) ## [1.12.9](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.8...v1.12.9) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([e11f151](https://github.com/lyne-design-system/lyne-design-tokens/commit/e11f15104f480657879e2b935d348ccd39490359)) +- figma library update [skip ci] ([e11f151](https://github.com/lyne-design-system/lyne-design-tokens/commit/e11f15104f480657879e2b935d348ccd39490359)) ## [1.12.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.7...v1.12.8) (2020-08-24) - ### Bug Fixes -* figma library update [skip ci] ([fc77fa7](https://github.com/lyne-design-system/lyne-design-tokens/commit/fc77fa75f7731b0ddab3fe289b6eaf1755e5daf1)) +- figma library update [skip ci] ([fc77fa7](https://github.com/lyne-design-system/lyne-design-tokens/commit/fc77fa75f7731b0ddab3fe289b6eaf1755e5daf1)) ## [1.12.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.6...v1.12.7) (2020-08-22) - ### Bug Fixes -* figma library update [skip ci] ([d25caf4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d25caf4acde4e74b2d3e0c1d2804fa13c8b141c9)) +- figma library update [skip ci] ([d25caf4](https://github.com/lyne-design-system/lyne-design-tokens/commit/d25caf4acde4e74b2d3e0c1d2804fa13c8b141c9)) ## [1.12.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.5...v1.12.6) (2020-08-21) - ### Bug Fixes -* figma library update [skip ci] ([f63ca9f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f63ca9f183b0bdef751a678219be1c84f36798dc)) +- figma library update [skip ci] ([f63ca9f](https://github.com/lyne-design-system/lyne-design-tokens/commit/f63ca9f183b0bdef751a678219be1c84f36798dc)) ## [1.12.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.4...v1.12.5) (2020-08-21) - ### Bug Fixes -* figma library update ([88709f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/88709f467411b79cdac1f7347ed4043c71945c4a)) +- figma library update ([88709f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/88709f467411b79cdac1f7347ed4043c71945c4a)) ## [1.12.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.3...v1.12.4) (2020-08-21) - ### Bug Fixes -* figma library update ([0d6c0fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0d6c0fe6e9e893be250b2674e43a8feb074099af)) -* try to push properties file back to repo ([d104a44](https://github.com/lyne-design-system/lyne-design-tokens/commit/d104a44aec1ea4040261e3597cb10a5b6aa707a2)) +- figma library update ([0d6c0fe](https://github.com/lyne-design-system/lyne-design-tokens/commit/0d6c0fe6e9e893be250b2674e43a8feb074099af)) +- try to push properties file back to repo ([d104a44](https://github.com/lyne-design-system/lyne-design-tokens/commit/d104a44aec1ea4040261e3597cb10a5b6aa707a2)) ## [1.12.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.2...v1.12.3) (2020-08-20) - ### Bug Fixes -* fake commit to trigger release ([90630f1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90630f11d485a7e3d952dd3656140ca062dabf3f)) +- fake commit to trigger release ([90630f1](https://github.com/lyne-design-system/lyne-design-tokens/commit/90630f11d485a7e3d952dd3656140ca062dabf3f)) ## [1.12.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.1...v1.12.2) (2020-08-20) - ### Bug Fixes -* fake commit to trigger release ([dde287d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dde287d493d77fb78954667f09ad5ee04dbd9965)) -* make sure font size is defined in px ([f248ef3](https://github.com/lyne-design-system/lyne-design-tokens/commit/f248ef37b3082dffb6f70c0ff3eae1f6203c1186)) +- fake commit to trigger release ([dde287d](https://github.com/lyne-design-system/lyne-design-tokens/commit/dde287d493d77fb78954667f09ad5ee04dbd9965)) +- make sure font size is defined in px ([f248ef3](https://github.com/lyne-design-system/lyne-design-tokens/commit/f248ef37b3082dffb6f70c0ff3eae1f6203c1186)) ## [1.12.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.12.0...v1.12.1) (2020-08-20) - ### Bug Fixes -* font size json ([edc09f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/edc09f94e1560a1e2e7eeaf7b3b1385a2ee8f49f)) +- font size json ([edc09f9](https://github.com/lyne-design-system/lyne-design-tokens/commit/edc09f94e1560a1e2e7eeaf7b3b1385a2ee8f49f)) # [1.12.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.8...v1.12.0) (2020-08-20) - ### Bug Fixes -* add comments, uncommend non-zero exit code for travis ([bed5093](https://github.com/lyne-design-system/lyne-design-tokens/commit/bed509390033a84a3c436bb44a8adf12079a8a64)) -* add correct build scripts ([68d7d93](https://github.com/lyne-design-system/lyne-design-tokens/commit/68d7d9326b1164828bf929c45e3e0c13fd691257)) -* add properties folder to gitignore ([6470c31](https://github.com/lyne-design-system/lyne-design-tokens/commit/6470c31922cf1087fe8fa38ac8147379c5c554ed)) -* correct comment ([90ddd97](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ddd97cadd3537f9139ce8a5dd3d3611c8aac60)) -* remove json lint ([934a5bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/934a5bf12449a79b59a52e003ab58cf12582ec44)) -* remove shell script, get figma json in node instead ([2c5fbfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/2c5fbfab8a6406a8fbee43b1fa2ddcb0876e4dfe)) -* switch frames and texts to figma components ([3f7d93d](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f7d93d14b7c0699e8a0323e2b8041615e5c8e0b)) -* use correct config parameter ([b0656cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0656cb6921b51beee37842ca5478704344b54f3)) - +- add comments, uncommend non-zero exit code for travis ([bed5093](https://github.com/lyne-design-system/lyne-design-tokens/commit/bed509390033a84a3c436bb44a8adf12079a8a64)) +- add correct build scripts ([68d7d93](https://github.com/lyne-design-system/lyne-design-tokens/commit/68d7d9326b1164828bf929c45e3e0c13fd691257)) +- add properties folder to gitignore ([6470c31](https://github.com/lyne-design-system/lyne-design-tokens/commit/6470c31922cf1087fe8fa38ac8147379c5c554ed)) +- correct comment ([90ddd97](https://github.com/lyne-design-system/lyne-design-tokens/commit/90ddd97cadd3537f9139ce8a5dd3d3611c8aac60)) +- remove json lint ([934a5bf](https://github.com/lyne-design-system/lyne-design-tokens/commit/934a5bf12449a79b59a52e003ab58cf12582ec44)) +- remove shell script, get figma json in node instead ([2c5fbfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/2c5fbfab8a6406a8fbee43b1fa2ddcb0876e4dfe)) +- switch frames and texts to figma components ([3f7d93d](https://github.com/lyne-design-system/lyne-design-tokens/commit/3f7d93d14b7c0699e8a0323e2b8041615e5c8e0b)) +- use correct config parameter ([b0656cb](https://github.com/lyne-design-system/lyne-design-tokens/commit/b0656cb6921b51beee37842ca5478704344b54f3)) ### Features -* add npm script to run figma shell script ([38d5cb0](https://github.com/lyne-design-system/lyne-design-tokens/commit/38d5cb09a0fba499555931cd435c8175a0a26809)) -* add shell script to get file info json from figma api ([62177f3](https://github.com/lyne-design-system/lyne-design-tokens/commit/62177f3444ad80a46de8e02d7445be762452cded)) -* extract design values from figma file ([05fe6c9](https://github.com/lyne-design-system/lyne-design-tokens/commit/05fe6c9fa7eb957fca9ff902843716635a3d5876)) -* finalize workflow ([1850be3](https://github.com/lyne-design-system/lyne-design-tokens/commit/1850be3f641aa69124d6013fbf6e4c2a848b1b97)) -* write json files ([4c49c3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c49c3b9873e47e2750b8941e5cf9d9bff5af852)) +- add npm script to run figma shell script ([38d5cb0](https://github.com/lyne-design-system/lyne-design-tokens/commit/38d5cb09a0fba499555931cd435c8175a0a26809)) +- add shell script to get file info json from figma api ([62177f3](https://github.com/lyne-design-system/lyne-design-tokens/commit/62177f3444ad80a46de8e02d7445be762452cded)) +- extract design values from figma file ([05fe6c9](https://github.com/lyne-design-system/lyne-design-tokens/commit/05fe6c9fa7eb957fca9ff902843716635a3d5876)) +- finalize workflow ([1850be3](https://github.com/lyne-design-system/lyne-design-tokens/commit/1850be3f641aa69124d6013fbf6e4c2a848b1b97)) +- write json files ([4c49c3b](https://github.com/lyne-design-system/lyne-design-tokens/commit/4c49c3b9873e47e2750b8941e5cf9d9bff5af852)) ## [1.11.8](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.7...v1.11.8) (2020-07-17) - ### Bug Fixes -* change main color back to red ([7b65d90](https://github.com/lyne-design-system/lyne-design-tokens/commit/7b65d90d88f6c7d5602c4bacec06254a3716958d)) +- change main color back to red ([7b65d90](https://github.com/lyne-design-system/lyne-design-tokens/commit/7b65d90d88f6c7d5602c4bacec06254a3716958d)) ## [1.11.7](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.6...v1.11.7) (2020-07-13) - ### Bug Fixes -* change main color ([588a587](https://github.com/lyne-design-system/lyne-design-tokens/commit/588a5879b1d7e0a7290310ec1295b532f186e88b)) +- change main color ([588a587](https://github.com/lyne-design-system/lyne-design-tokens/commit/588a5879b1d7e0a7290310ec1295b532f186e88b)) ## [1.11.6](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.5...v1.11.6) (2020-07-10) - ### Bug Fixes -* revert base color change ([fa3290d](https://github.com/lyne-design-system/lyne-design-tokens/commit/fa3290d8865265b072cb1787ca596c613339bf90)) +- revert base color change ([fa3290d](https://github.com/lyne-design-system/lyne-design-tokens/commit/fa3290d8865265b072cb1787ca596c613339bf90)) ## [1.11.5](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.4...v1.11.5) (2020-07-10) - ### Bug Fixes -* change description of base color ([6a70cfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a70cfa63d18587498cbd4bd43aa867e40e9c158)) -* temporary change base color ([444db46](https://github.com/lyne-design-system/lyne-design-tokens/commit/444db4607e273cf135933aba8bc018beb6081bdf)) +- change description of base color ([6a70cfa](https://github.com/lyne-design-system/lyne-design-tokens/commit/6a70cfa63d18587498cbd4bd43aa867e40e9c158)) +- temporary change base color ([444db46](https://github.com/lyne-design-system/lyne-design-tokens/commit/444db4607e273cf135933aba8bc018beb6081bdf)) ## [1.11.4](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.3...v1.11.4) (2020-06-02) - ### Bug Fixes -* add eslint as a dependency ([dc2f658](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc2f65802e50bbbe604b56db5dbf8f21ba55d1ce)) -* add eslint config ([311f718](https://github.com/lyne-design-system/lyne-design-tokens/commit/311f718778c17b909a42439400b031e922e24a34)) -* add line breaks in json files ([81e5a82](https://github.com/lyne-design-system/lyne-design-tokens/commit/81e5a82f7a0abaf57f94163d2d41cb6a1488ffc2)) +- add eslint as a dependency ([dc2f658](https://github.com/lyne-design-system/lyne-design-tokens/commit/dc2f65802e50bbbe604b56db5dbf8f21ba55d1ce)) +- add eslint config ([311f718](https://github.com/lyne-design-system/lyne-design-tokens/commit/311f718778c17b909a42439400b031e922e24a34)) +- add line breaks in json files ([81e5a82](https://github.com/lyne-design-system/lyne-design-tokens/commit/81e5a82f7a0abaf57f94163d2d41cb6a1488ffc2)) ## [1.11.3](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.2...v1.11.3) (2020-05-18) - ### Bug Fixes -* add slack notification for travis builds ([a07ad9e](https://github.com/lyne-design-system/lyne-design-tokens/commit/a07ad9e7922882076b8e76575251948971d76e55)) +- add slack notification for travis builds ([a07ad9e](https://github.com/lyne-design-system/lyne-design-tokens/commit/a07ad9e7922882076b8e76575251948971d76e55)) ## [1.11.2](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.1...v1.11.2) (2020-05-18) - ### Bug Fixes -* reformat release message (fake fix to trigger release) ([109a13d](https://github.com/lyne-design-system/lyne-design-tokens/commit/109a13d1478f41896dd86f456f8fca6e4e358630)) +- reformat release message (fake fix to trigger release) ([109a13d](https://github.com/lyne-design-system/lyne-design-tokens/commit/109a13d1478f41896dd86f456f8fca6e4e358630)) ## [1.11.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.11.0...v1.11.1) (2020-05-13) - ### Bug Fixes -* revert test change ([cff9971](https://github.com/lyne-design-system/lyne-design-tokens/commit/cff997171cb233ef7a96e3316dd0fff1c8cfcb97)) +- revert test change ([cff9971](https://github.com/lyne-design-system/lyne-design-tokens/commit/cff997171cb233ef7a96e3316dd0fff1c8cfcb97)) # [1.11.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.10.0...v1.11.0) (2020-05-13) - ### Features -* test color change ([395cd2c](https://github.com/lyne-design-system/lyne-design-tokens/commit/395cd2c27cd6ae69662d0124f61a5ea33d849e29)) +- test color change ([395cd2c](https://github.com/lyne-design-system/lyne-design-tokens/commit/395cd2c27cd6ae69662d0124f61a5ea33d849e29)) # [1.10.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.9.1...v1.10.0) (2020-04-22) - ### Features -* add sample sketch constructor, but comment it out ([5cb2de4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5cb2de4bd1877b9da7bd0398a85d47aff87a81d9)) +- add sample sketch constructor, but comment it out ([5cb2de4](https://github.com/lyne-design-system/lyne-design-tokens/commit/5cb2de4bd1877b9da7bd0398a85d47aff87a81d9)) ## [1.9.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.9.0...v1.9.1) (2020-04-06) - ### Bug Fixes -* add custom commonjs transformer and remove deprecated transformers ([b51c766](https://github.com/lyne-design-system/lyne-design-tokens/commit/b51c7662e0c13d75daeb39e152a62e7849d56554)) +- add custom commonjs transformer and remove deprecated transformers ([b51c766](https://github.com/lyne-design-system/lyne-design-tokens/commit/b51c7662e0c13d75daeb39e152a62e7849d56554)) # [1.9.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.8.0...v1.9.0) (2020-04-06) - ### Bug Fixes -* make sure js output target is correctly transformed ([8a066a4](https://github.com/lyne-design-system/lyne-design-tokens/commit/8a066a49c4bada067f8e68dee28902aeb545a0a0)) - +- make sure js output target is correctly transformed ([8a066a4](https://github.com/lyne-design-system/lyne-design-tokens/commit/8a066a49c4bada067f8e68dee28902aeb545a0a0)) ### Features -* add sample for token deprecation ([23d9a81](https://github.com/lyne-design-system/lyne-design-tokens/commit/23d9a81ba7a2277179dcf8b7723567aec4d6b8b3)) +- add sample for token deprecation ([23d9a81](https://github.com/lyne-design-system/lyne-design-tokens/commit/23d9a81ba7a2277179dcf8b7723567aec4d6b8b3)) # [1.8.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.7.0...v1.8.0) (2020-04-06) - ### Bug Fixes -* rename lint script ([f07c5c4](https://github.com/lyne-design-system/lyne-design-tokens/commit/f07c5c4436c107456fddab62ead8e87479f72d3d)) - +- rename lint script ([f07c5c4](https://github.com/lyne-design-system/lyne-design-tokens/commit/f07c5c4436c107456fddab62ead8e87479f72d3d)) ### Features -* add more output targets for sass, less ([207ef94](https://github.com/lyne-design-system/lyne-design-tokens/commit/207ef947aba548189bf974e0f21b7afadea12621)) +- add more output targets for sass, less ([207ef94](https://github.com/lyne-design-system/lyne-design-tokens/commit/207ef947aba548189bf974e0f21b7afadea12621)) # [1.7.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.6.0...v1.7.0) (2020-04-06) - ### Features -* add umd exports for javascript output target ([0e8224e](https://github.com/lyne-design-system/lyne-design-tokens/commit/0e8224e42688f9647f56ea13bf28ed0cce599ab5)) +- add umd exports for javascript output target ([0e8224e](https://github.com/lyne-design-system/lyne-design-tokens/commit/0e8224e42688f9647f56ea13bf28ed0cce599ab5)) # [1.6.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.5.0...v1.6.0) (2020-04-06) - ### Bug Fixes -* add comment for red main color ([bdce397](https://github.com/lyne-design-system/lyne-design-tokens/commit/bdce397d057a9d00a1d9888c195f3234b17760fc)) -* fix linting issue ([d4ae8a1](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4ae8a1003381ae8f08a00fcc5ebe5d048f6386c)) - +- add comment for red main color ([bdce397](https://github.com/lyne-design-system/lyne-design-tokens/commit/bdce397d057a9d00a1d9888c195f3234b17760fc)) +- fix linting issue ([d4ae8a1](https://github.com/lyne-design-system/lyne-design-tokens/commit/d4ae8a1003381ae8f08a00fcc5ebe5d048f6386c)) ### Features -* add javascript module and object as additional output target ([9dc9803](https://github.com/lyne-design-system/lyne-design-tokens/commit/9dc9803b9838416f7c40dac7a1f99091a5dfbb11)) +- add javascript module and object as additional output target ([9dc9803](https://github.com/lyne-design-system/lyne-design-tokens/commit/9dc9803b9838416f7c40dac7a1f99091a5dfbb11)) # [1.5.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.4.1...v1.5.0) (2020-04-05) - ### Features -* add json output target ([04bb093](https://github.com/lyne-design-system/lyne-design-tokens/commit/04bb093651ea37bd6b524dc0e4495389491061de)) -* add sketch and js output targets ([8de0998](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de099866833b074264350ede16c12c492961296)) +- add json output target ([04bb093](https://github.com/lyne-design-system/lyne-design-tokens/commit/04bb093651ea37bd6b524dc0e4495389491061de)) +- add sketch and js output targets ([8de0998](https://github.com/lyne-design-system/lyne-design-tokens/commit/8de099866833b074264350ede16c12c492961296)) ## [1.4.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.4.0...v1.4.1) (2020-04-05) - ### Bug Fixes -* add linting step before building package ([a5441f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/a5441f4972fb9b84b8f6c9d7f1908793e1d74b69)) +- add linting step before building package ([a5441f4](https://github.com/lyne-design-system/lyne-design-tokens/commit/a5441f4972fb9b84b8f6c9d7f1908793e1d74b69)) # [1.4.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.3.1...v1.4.0) (2020-04-05) - ### Bug Fixes -* fix json format ([90dc180](https://github.com/lyne-design-system/lyne-design-tokens/commit/90dc180a341343d6481d5ef258e27c98ad78a42d)) - +- fix json format ([90dc180](https://github.com/lyne-design-system/lyne-design-tokens/commit/90dc180a341343d6481d5ef258e27c98ad78a42d)) ### Features -* fake commit to trigger release ([56adf30](https://github.com/lyne-design-system/lyne-design-tokens/commit/56adf305a045d9012a4f693201d68d6625d795d4)) -* test chaning some properties ([8f67915](https://github.com/lyne-design-system/lyne-design-tokens/commit/8f67915e1a7a1dbe5a0564290e7783a5aa0043d8)) +- fake commit to trigger release ([56adf30](https://github.com/lyne-design-system/lyne-design-tokens/commit/56adf305a045d9012a4f693201d68d6625d795d4)) +- test chaning some properties ([8f67915](https://github.com/lyne-design-system/lyne-design-tokens/commit/8f67915e1a7a1dbe5a0564290e7783a5aa0043d8)) ## [1.3.1](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.3.0...v1.3.1) (2020-04-05) - ### Bug Fixes -* fake commit to trigger release ([e013e64](https://github.com/lyne-design-system/lyne-design-tokens/commit/e013e64d47abde64c18ddeeec1016f817d615dc9)) +- fake commit to trigger release ([e013e64](https://github.com/lyne-design-system/lyne-design-tokens/commit/e013e64d47abde64c18ddeeec1016f817d615dc9)) # [1.3.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.2.0...v1.3.0) (2020-04-05) - ### Bug Fixes -* remove build folder, build in dist folder ([3d85e76](https://github.com/lyne-design-system/lyne-design-tokens/commit/3d85e76f811b49a43e1c0f4a6d4dc40c9e2bd4ad)) - +- remove build folder, build in dist folder ([3d85e76](https://github.com/lyne-design-system/lyne-design-tokens/commit/3d85e76f811b49a43e1c0f4a6d4dc40c9e2bd4ad)) ### Features -* fake commit to trigger release ([a70c433](https://github.com/lyne-design-system/lyne-design-tokens/commit/a70c433b47ffb006b9ead825468db123b375f716)) -* make sure npm publishes the build folder ([297ff7d](https://github.com/lyne-design-system/lyne-design-tokens/commit/297ff7db5f29727534731511d435e7ae0436394e)) +- fake commit to trigger release ([a70c433](https://github.com/lyne-design-system/lyne-design-tokens/commit/a70c433b47ffb006b9ead825468db123b375f716)) +- make sure npm publishes the build folder ([297ff7d](https://github.com/lyne-design-system/lyne-design-tokens/commit/297ff7db5f29727534731511d435e7ae0436394e)) # [1.2.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.1.0...v1.2.0) (2020-04-05) - ### Features -* fake commit to trigger release ([e4f1bd1](https://github.com/lyne-design-system/lyne-design-tokens/commit/e4f1bd16f06cfd9c004fb879c4ae2c05c465b832)) -* make sure that build folder is published ([5630810](https://github.com/lyne-design-system/lyne-design-tokens/commit/56308106c4e61a2240de748640df5e2027bf26a9)) +- fake commit to trigger release ([e4f1bd1](https://github.com/lyne-design-system/lyne-design-tokens/commit/e4f1bd16f06cfd9c004fb879c4ae2c05c465b832)) +- make sure that build folder is published ([5630810](https://github.com/lyne-design-system/lyne-design-tokens/commit/56308106c4e61a2240de748640df5e2027bf26a9)) # [1.1.0](https://github.com/lyne-design-system/lyne-design-tokens/compare/v1.0.0...v1.1.0) (2020-04-05) - ### Features -* add semantic release slack bot ([78a9cda](https://github.com/lyne-design-system/lyne-design-tokens/commit/78a9cda1538eb1a5497abf2a6ef1f376435787c3)) -* fake commit to trigger release ([1651432](https://github.com/lyne-design-system/lyne-design-tokens/commit/16514329bf4f79499e1b0f49c35078b32a1d0bd4)) +- add semantic release slack bot ([78a9cda](https://github.com/lyne-design-system/lyne-design-tokens/commit/78a9cda1538eb1a5497abf2a6ef1f376435787c3)) +- fake commit to trigger release ([1651432](https://github.com/lyne-design-system/lyne-design-tokens/commit/16514329bf4f79499e1b0f49c35078b32a1d0bd4)) # 1.0.0 (2020-04-05) - ### Features -* add style dictionary ([87d5243](https://github.com/lyne-design-system/lyne-design-tokens/commit/87d52436b57014bf312179e1cd87d5afcbf490b1)) +- add style dictionary ([87d5243](https://github.com/lyne-design-system/lyne-design-tokens/commit/87d52436b57014bf312179e1cd87d5afcbf490b1)) diff --git a/README.md b/README.md index 31926048..8337ca73 100644 --- a/README.md +++ b/README.md @@ -7,10 +7,13 @@ Automatically generate cross platform Design Tokens for the Lyne Design System b ## Installation Install the Lyne Design Tokens with the following command: + ```bash npm install --save-dev lyne-design-tokens ``` + ## What's included + ``` lyne-design-tokens/ ├── designTokens/ # Token source files @@ -23,9 +26,9 @@ lyne-design-tokens/ │ ├── tokens.commonjs.js # Flat commonjs file │ ├── tokens.es6.js # Flat es6 file │ └── tokens.json # Flat .json file - ├── less/ + ├── less/ │ └── variables.less # Less variables - └── scss/ + └── scss/ ├── variables_css--placeholder.scss # CSS variables with Sass placeholder selector (%) └── variables.scss # Sass variables ``` @@ -43,6 +46,7 @@ Please follow the [Conventional Commits](https://www.conventionalcommits.org/en/ ### Env Variables To test and develop the workflow on your local machine, you need to setup an `.env` file in the root directory of the project with the following content: + ```bash TRAVIS_TOKEN=XXX ``` diff --git a/build.js b/build.js index d534e420..2a8c17b6 100644 --- a/build.js +++ b/build.js @@ -1,5 +1,4 @@ -const StyleDictionary = require('style-dictionary') - .extend(`${__dirname}/config.js`); +const StyleDictionary = require('style-dictionary').extend(`${__dirname}/config.js`); const fs = require('fs'); const _ = require('lodash'); @@ -8,24 +7,19 @@ console.log('\n=============================================='); StyleDictionary.registerFormat({ formatter: _.template(fs.readFileSync(`${__dirname}/templates/web-scss.template`)), - name: 'custom/format/scss' + name: 'custom/format/scss', }); StyleDictionary.registerFormat({ formatter: _.template(fs.readFileSync(`${__dirname}/templates/commonjs.template`)), - name: 'custom/format/javascript/module' + name: 'custom/format/javascript/module', }); StyleDictionary.registerFormat({ - formatter: ({ - dictionary - }) => { - const { - allTokens - } = dictionary; + formatter: ({ dictionary }) => { + const { allTokens } = dictionary; allTokens.forEach((token) => { - // if a token uses a refernce token, we add the original token object const usesReference = dictionary.usesReference(token); @@ -34,16 +28,15 @@ StyleDictionary.registerFormat({ token.refOriginal = ref; } - }); const fileContents = { - tokens: allTokens + tokens: allTokens, }; return JSON.stringify(fileContents, null, 2); }, - name: 'json/extended' + name: 'json/extended', }); // FINALLY, BUILD ALL THE PLATFORMS diff --git a/cdn/index.html b/cdn/index.html index 78ed829d..e575ffe5 100644 --- a/cdn/index.html +++ b/cdn/index.html @@ -1,25 +1,26 @@ + + +
+ +Every release has a folder containing a file with all the design token declarations.
-Every release has a folder containing a file with all the design token declarations.
++ There is a JSON-File containing all the versions along with the corresponding urls to the + tokens.json file: tokens.json +
-There is a JSON-File containing all the versions along with the corresponding urls to the tokens.json file: tokens.json
+Root URL: /versions/3.21.1
@@ -135,8 +136,6 @@Root URL: /versions/3.13.1
Tokens file: /versions/3.13.1/tokens.json
Every release has a folder containing a file with all the design token declarations.
-There is a JSON-File containing all the versions along with the corresponding urls to the tokens.json file: tokens.json
+There is a JSON-File containing all the versions along with the corresponding urls to the tokens.json file: tokens.json
Root URL: ${versionItem.url}
Tokens file: ${versionItem.tokens}