Skip to content

Commit

Permalink
chore(release): 1.11.0 [skip ci]
Browse files Browse the repository at this point in the history
# [1.11.0](v1.10.3...v1.11.0) (2023-09-27)

### Features

* **tokens:** add animation timing token ([#110](#110)) ([23c8e47](23c8e47))
  • Loading branch information
semantic-release-bot committed Sep 27, 2023
1 parent 23c8e47 commit 060f1f7
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [1.11.0](https://github.com/Kong/design-tokens/compare/v1.10.3...v1.11.0) (2023-09-27)


### Features

* **tokens:** add animation timing token ([#110](https://github.com/Kong/design-tokens/issues/110)) ([23c8e47](https://github.com/Kong/design-tokens/commit/23c8e47a8c2629924f11c9024a2499cdc7523248))

## [1.10.3](https://github.com/Kong/design-tokens/compare/v1.10.2...v1.10.3) (2023-09-26)


Expand Down
13 changes: 12 additions & 1 deletion TOKENS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
* Do not edit directly
* Generated on Tue, 26 Sep 2023 20:32:49 GMT
* Generated on Wed, 27 Sep 2023 16:52:16 GMT
*
* Kong Design Tokens
* GitHub: https://github.com/Kong/design-tokens
Expand Down Expand Up @@ -142,6 +142,8 @@ $kui-color-text-primary-stronger: #002099;
$kui-color-text-success: #007d60;
/* yellow.60 */
$kui-color-text-warning: #995c00;
/* Default transition timing */
$kui-animation-duration-20: 0.2s;
$kui-border-radius-0: 0px;
$kui-border-radius-10: 2px;
$kui-border-radius-20: 4px;
Expand Down Expand Up @@ -438,6 +440,8 @@ $tokens-map: (
'kui-color-text-success': #007d60;
/* yellow.60 */
'kui-color-text-warning': #995c00;
/* Default transition timing */
'kui-animation-duration-20': 0.2s;
'kui-border-radius-0': 0px;
'kui-border-radius-10': 2px;
'kui-border-radius-20': 4px;
Expand Down Expand Up @@ -736,6 +740,8 @@ $tokens-map: (
@kui-color-text-success: #007d60;
/* yellow.60 */
@kui-color-text-warning: #995c00;
/* Default transition timing */
@kui-animation-duration-20: 0.2s;
@kui-border-radius-0: 0px;
@kui-border-radius-10: 2px;
@kui-border-radius-20: 4px;
Expand Down Expand Up @@ -1035,6 +1041,8 @@ You may scope your CSS custom property overrides inside the `:root` selector as
--kui-color-text-success: #007d60;
/* yellow.60 */
--kui-color-text-warning: #995c00;
/* Default transition timing */
--kui-animation-duration-20: 0.2s;
--kui-border-radius-0: 0px;
--kui-border-radius-10: 2px;
--kui-border-radius-20: 4px;
Expand Down Expand Up @@ -1332,6 +1340,8 @@ export const KUI_COLOR_TEXT_PRIMARY_STRONGER = "#002099";
export const KUI_COLOR_TEXT_SUCCESS = "#007d60";
/* yellow.60 */
export const KUI_COLOR_TEXT_WARNING = "#995c00";
/* Default transition timing */
export const KUI_ANIMATION_DURATION_20 = "0.2s";
export const KUI_BORDER_RADIUS_0 = "0px";
export const KUI_BORDER_RADIUS_10 = "2px";
export const KUI_BORDER_RADIUS_20 = "4px";
Expand Down Expand Up @@ -1567,6 +1577,7 @@ export const KUI_SPACE_AUTO = "auto";
"kui_color_text_primary_stronger": "#002099",
"kui_color_text_success": "#007d60",
"kui_color_text_warning": "#995c00",
"kui_animation_duration_20": "0.2s",
"kui_border_radius_0": "0px",
"kui_border_radius_10": "2px",
"kui_border_radius_20": "4px",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kong/design-tokens",
"version": "1.10.3",
"version": "1.11.0",
"description": "Kong UI Design Tokens and style dictionary",
"scripts": {
"build": "yarn build:clean && style-dictionary build && yarn copy:tokens-doc && yarn copy:stylelint-plugin",
Expand Down

0 comments on commit 060f1f7

Please sign in to comment.