Skip to content

Commit

Permalink
chore(release): 1.6.2 [skip ci]
Browse files Browse the repository at this point in the history
## [1.6.2](v1.6.1...v1.6.2) (2023-07-20)

### Bug Fixes

* update comments and eslint setting ([c698171](c698171))
  • Loading branch information
semantic-release-bot committed Jul 20, 2023
1 parent c698171 commit 25ddac7
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.6.2](https://github.com/Kong/design-tokens/compare/v1.6.1...v1.6.2) (2023-07-20)


### Bug Fixes

* update comments and eslint setting ([c698171](https://github.com/Kong/design-tokens/commit/c698171b92bd33c1a9ec681b2ab267a36730a052))

## [1.6.1](https://github.com/Kong/design-tokens/compare/v1.6.0...v1.6.1) (2023-07-14)


Expand Down
26 changes: 13 additions & 13 deletions TOKENS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
* Do not edit directly
* Generated on Fri, 14 Jul 2023 13:08:05 GMT
* Generated on Thu, 20 Jul 2023 21:02:31 GMT
*
* Kong Design Tokens
* GitHub: https://github.com/Kong/design-tokens
Expand Down Expand Up @@ -90,11 +90,11 @@ $kui-border-width-0: 0px;
$kui-border-width-10: 1px;
$kui-border-width-20: 2px;
$kui-border-width-30: 4px;
$kui-breakpoint-desktop: 1536px; /* Used for larger desktop screens. */
$kui-breakpoint-laptop: 1280px; /* Used for standard desktop screens. */
$kui-breakpoint-mobile: 640px; /* Used for larger mobile screens. Anything under this value is considered mobile. */
$kui-breakpoint-mobile: 640px; /* Used for larger mobile screens. Anything viewport width under this value is considered mobile. */
$kui-breakpoint-phablet: 768px; /* Used for tablet screens. */
$kui-breakpoint-tablet: 1024px; /* Used for larger tablet screens. Any viewport width less than this value is considered a mobile layout. Any viewport width this size and greater is considered a desktop layout. */
$kui-breakpoint-tablet: 1024px; /* Used for larger tablet screens. Any viewport width less than this value will likely show a mobile layout. Any viewport width this value and greater will likely show a desktop layout. */
$kui-breakpoint-laptop: 1280px; /* Used for standard desktop screens. */
$kui-breakpoint-desktop: 1536px; /* Used for larger desktop screens. */
$kui-icon-size-10: 10px;
$kui-icon-size-20: 12px;
$kui-icon-size-30: 16px;
Expand Down Expand Up @@ -247,11 +247,11 @@ export const KUI_BORDER_WIDTH_0 = "0px";
export const KUI_BORDER_WIDTH_10 = "1px";
export const KUI_BORDER_WIDTH_20 = "2px";
export const KUI_BORDER_WIDTH_30 = "4px";
export const KUI_BREAKPOINT_DESKTOP = "1536px"; /* Used for larger desktop screens. */
export const KUI_BREAKPOINT_LAPTOP = "1280px"; /* Used for standard desktop screens. */
export const KUI_BREAKPOINT_MOBILE = "640px"; /* Used for larger mobile screens. Anything under this value is considered mobile. */
export const KUI_BREAKPOINT_MOBILE = "640px"; /* Used for larger mobile screens. Anything viewport width under this value is considered mobile. */
export const KUI_BREAKPOINT_PHABLET = "768px"; /* Used for tablet screens. */
export const KUI_BREAKPOINT_TABLET = "1024px"; /* Used for larger tablet screens. Any viewport width less than this value is considered a mobile layout. Any viewport width this size and greater is considered a desktop layout. */
export const KUI_BREAKPOINT_TABLET = "1024px"; /* Used for larger tablet screens. Any viewport width less than this value will likely show a mobile layout. Any viewport width this value and greater will likely show a desktop layout. */
export const KUI_BREAKPOINT_LAPTOP = "1280px"; /* Used for standard desktop screens. */
export const KUI_BREAKPOINT_DESKTOP = "1536px"; /* Used for larger desktop screens. */
export const KUI_ICON_SIZE_10 = "10px";
export const KUI_ICON_SIZE_20 = "12px";
export const KUI_ICON_SIZE_30 = "16px";
Expand Down Expand Up @@ -414,11 +414,11 @@ You may scope your CSS variable overrides inside the `:root` selector as shown h
--kui-border-width-10: initial; /* Default value: `1px` */
--kui-border-width-20: initial; /* Default value: `2px` */
--kui-border-width-30: initial; /* Default value: `4px` */
--kui-breakpoint-desktop: initial; /* Used for larger desktop screens. Default value: `1536px` */
--kui-breakpoint-laptop: initial; /* Used for standard desktop screens. Default value: `1280px` */
--kui-breakpoint-mobile: initial; /* Used for larger mobile screens. Anything under this value is considered mobile. Default value: `640px` */
--kui-breakpoint-mobile: initial; /* Used for larger mobile screens. Anything viewport width under this value is considered mobile. Default value: `640px` */
--kui-breakpoint-phablet: initial; /* Used for tablet screens. Default value: `768px` */
--kui-breakpoint-tablet: initial; /* Used for larger tablet screens. Any viewport width less than this value is considered a mobile layout. Any viewport width this size and greater is considered a desktop layout. Default value: `1024px` */
--kui-breakpoint-tablet: initial; /* Used for larger tablet screens. Any viewport width less than this value will likely show a mobile layout. Any viewport width this value and greater will likely show a desktop layout. Default value: `1024px` */
--kui-breakpoint-laptop: initial; /* Used for standard desktop screens. Default value: `1280px` */
--kui-breakpoint-desktop: initial; /* Used for larger desktop screens. Default value: `1536px` */
--kui-icon-size-10: initial; /* Default value: `10px` */
--kui-icon-size-20: initial; /* Default value: `12px` */
--kui-icon-size-30: initial; /* Default value: `16px` */
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.6.1",
"version": "1.6.2",
"description": "Kong UI Design Tokens and style dictionary",
"scripts": {
"build": "yarn build:clean && style-dictionary build && yarn copy:tokens-doc",
Expand Down

0 comments on commit 25ddac7

Please sign in to comment.