Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@kong/design-tokens
Advanced tools
Kong Design Tokens, via Style Dictionary.
Note: Repository and documentation is a work in progress. This package is currently for Kong internal-use only, but is published publicly in order to consume in our OSS projects.
All design tokens must be placed inside of the /tokens
directory in one of two sub-directories.
Tokens must be defined in the corresponding JSON files within the /tokens
directory in one of two sub-directories:
Directory | Description |
---|---|
/tokens/alias | The alias directory must only contain alias values that point directly to a raw CSS value. Any tokens defined within the alias directory will not be exposed in the package exports. Tokens defined in the /tokens/alias/ directory can be utilized/referenced within the /tokens/source/ files; however, these tokens will NOT be exported in the build files. |
/tokens/source | The source directory contains all tokens that will be available for consumption from the package exports. |
Token keys must be lowercase, snake_case, and defined in normal alphabetical order (rules enforced by the eslint config)
The category
of each token should be its own directory (e.g. tokens/color/
)
Each type
of token should be a file in the category
directory, named {type}.json
(e.g. tokens/color/background.json
)
If there is only a single type
of token within a category
, you should name the file index.json
(e.g. tokens/line-height/index.json
)
Component tokens must be defined within the /tokens/source/components/
directory. All tokens for a component should be defined in a single JSON file, {component-name}.json
, with the name of the component as the top-level property in the file.
Token aliases (e.g. color aliases) must not be exposed/exported from the package exports
Tokens at the "root" of their structure must be defined with a key of "_"
to allow for nested child tokens.
{
"color": {
"text": {
"_": {
"comment": "blue-100",
"value": "{color.alias.blue.100}"
},
"neutral": {
"_": {
"comment": "gray-100",
"value": "{color.alias.gray.60}"
},
"strong": {
"comment": "gray-70",
"value": "{color.alias.gray.70}"
}
}
}
}
}
/* Output */
--kui-color-text: #000933;
--kui-color-text-neutral: #6c7489;
--kui-color-text-neutral-strong: #52596e;
The @kong/design-tokens
package exports tokens in multiple formats:
Exports are available from the package root, meaning you do not need to include the dist/
directory in your imports:
import { KUI_COLOR_BACKGROUND_PRIMARY_STRONG } from '@kong/design-tokens/tokens/js'
View the lists of available tokens here
SCSS variables can be utilized in your project's SCSS files or in-component style blocks (this assumes your app is already configured to compile Sass).
To use the SCSS variables, you need to import them into your component or app stylesheet so they are available throughout your project utilizing one of the methods below:
@import '@kong/design-tokens/tokens/scss/variables';
If your component or application utilizes Vite to build and compile, you may add the following configuration to your vite.config.ts
to import the SCSS variables into all components within your project
// vite.config.ts
import { defineConfig } from 'vite'
export default defineConfig({
css: {
preprocessorOptions: {
scss: {
// Inject the @kong/design-tokens SCSS variables to make them available for all components.
additionalData: '@import "@kong/design-tokens/tokens/scss/variables";',
},
},
},
})
In your host project, install the package only as a devDependency
:
yarn add -D @kong/design-tokens
devDependency
?This package is intended to be consumed by a host component or application that will be compiled before publishing. This means when the component or app is compiled, any tokens it consumes (e.g. SCSS tokens, JavaScript variables, etc.) will be replaced during the build with the static token value.
This strategy alleviates the need for a consuming application to need to install the @kong/design-tokens
package when using a component that utilizes the tokens under-the-hood.
The primary consideration when using Kong's design tokens in components is to determine if the component needs to allow for downstream customization.
If your component does not need to offer any customization, only utilize the SCSS and JavaScript design tokens in your component.
If your component does want to offer customization, you will want to reference the corresponding token CSS variable with a fallback SCSS variable.
As an example, in Kong's Kongponents Vue component library, we want to offer deep levels of customization to allow for an external host application to override component styles. Enabling customization is easy by using the Kong Design Token's CSS variables with SCSS variable values as the fallback.
<style lang="scss">
// Import SCSS variables
@import "@kong/design-tokens/tokens/scss/variables";
.my-component-class {
color: var(--kui-color-text-primary, $kui-color-text-primary);
font-weight: var(--kui-font-weight-semibold, $kui-font-weight-semibold);
padding: var(--kui-space-20, $kui-space-20) var(--kui-space-40, $kui-space-40);
}
</style>
Inspecting the example above, you will notice that we fist import the SCSS variables. We then set each style property to the CSS variable, using the SCSS static variable as the fallback.
Important: notice we do not import CSS variables.
When Kongponents are imported and used in a host application, the components will utilize the SCSS fallback values by default since the CSS variables are undefined. This is the normal usage and works great for most applications.
If your application wants to customize some of the properties, it's easy by simply defining the CSS variables you want to override inside of your host application, as shown here:
<style>
// You may scope the variable to `root:` to impact the whole application...
:root {
--kui-color-text-primary: green;
}
// ...or scope the variable to a specific container to keep the changes isolated
table .my-table-row {
--kui-color-text-primary: purple;
}
</style>
Now that we have set a value for the CSS variable --kui-color-text-primary
in our host application, any instance of this CSS variable in the components will utilize our custom value instead of the default value.
Typically, a host application should only utilize the SCSS and/or JavaScript variables to define its styles. Host applications typically do not need to be customized after compile time, meaning there is no reason to use the CSS variables with SCSS variable fallbacks. Here's an example:
<style lang="scss">
// Import SCSS variables
@import "@kong/design-tokens/tokens/scss/variables";
// We directly reference the SCSS variables here which will be replaced with static values during the build
.my-app-custom-class {
color: $kui-color-text-primary;
font-weight: $kui-font-weight-semibold;
padding: $kui-space-20 $kui-space-40;
}
</style>
If your host application utilizes SSR, you may need to resolve aliases to the package exports.
For example, in a VitePress site, add the following to your vite.config.ts
export default defineConfig({
resolve: {
alias: {
// Explicitly alias the SCSS file since we are overriding the default import below
'@kong/design-tokens/tokens/scss/variables': path.resolve(__dirname, '../node_modules/@kong/design-tokens/dist/tokens/scss/variables.scss'),
// Alias `@kong/design-tokens` imports to specifically utilize the esm build
'@kong/design-tokens': path.resolve(__dirname, '../node_modules/@kong/design-tokens/dist/tokens/js/'),
},
},
})
To get started, install the package dependencies
yarn install --frozen-lockfile
This repository includes a Vue sandbox (see the /sandbox
directory) to allow you to experiment with consuming tokens.
To start the sandbox:
yarn sandbox
This command will simultaneously start the Vite dev server and initialize a watcher on the /tokens
directory. If any files in the /tokens
directory are modified, the sandbox will automatically run the build command to update the tokens and then restart the Vite dev server (simulating hot module reload).
Updating any files within the sandbox itself will also trigger hot module reload as expected.
Lint package files, and optionally auto-fix detected issues.
# Lint only
yarn lint
# Lint and fix
yarn lint:fix
Utilize the style-dictionary
CLI to build the token assets for production based on the configuration in /config.js
.
yarn build
If additional sub-directories (other than dist/tokens
) are added to the dist/
directory in /config.js
, you will also need to create a new corresponding entry in the package.json > exports
section to allow for importing into the host project without dist/
in the path.
For example, if I want to add a new my-feature
folder, I'd update the exports
entry as shown here:
"exports": {
"./package.json": "./package.json",
"./tokens/*": "./dist/tokens/*",
"./my-feature/*": "./dist/my-feature/*" // New directory
}
To get auto-completion of the SCSS variables in your project, you can add the SCSS IntelliSense extension to VS Code on your machine along with the corresponding settings object which will auto-import the variables for auto-completion:
// settings.json
{
"scss.scannerExclude": [
"**/.git",
"**/bower_components",
"**/node_modules/!(@kong/design-tokens),"
]
}
main
branch, then pull down the latest code by running git checkout main && git pull origin main
git checkout -b {type}/{jira-ticket}-{description}
- as an example, git checkout feat/khcp-1234-add-color-tokens
/tokens
directory as needed, ensuring to adhere to the Token Requirementsyarn lint
to ensure you do not have any linting errors. If you have errors, you can try running yarn lint:fix
to resolveyarn commit
to help build your commit messagegit push origin {branch-name}
This repo uses Conventional Commits.
Commitizen and Commitlint are used to help build and enforce commit messages.
It is highly recommended to use the following command in order to create your commits:
yarn commit
This will trigger the Commitizen interactive prompt for building your commit message.
Lefthook is used to manage Git Hooks within the repo.
commit-msg
hook is automatically setup that enforces commit message stands with commitlint
, see lefthook.yml
pre-push
hook is used that runs eslint
before allowing you to push your changes to the repositoryAdditionally, CI will use commitlint
to validate the commits associated with a PR in the Lint and Validate
job.
This repository utilizes Semantic Release for automated package publishing and version updates.
FAQs
Kong UI Design Tokens and style dictionary
We found that @kong/design-tokens demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.