@kong/design-tokens 1.18.1-pr.570.9343a28.0 → 1.18.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/tokens/css/custom-properties.css +1 -1
- package/dist/tokens/js/cjs/index.d.ts +1 -1
- package/dist/tokens/js/cjs/index.js +1 -1
- package/dist/tokens/js/index.d.ts +1 -1
- package/dist/tokens/js/index.mjs +1 -1
- package/dist/tokens/less/variables.less +1 -1
- package/dist/tokens/scss/_map.scss +1 -1
- package/dist/tokens/scss/_variables.scss +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ The `@kong/design-tokens` package exports tokens in multiple formats:
|
|
|
41
41
|
- [CSS Custom Properties](#css-custom-properties)
|
|
42
42
|
- [JavaScript](#javascript) (ESM, CJS, and JSON), along with corresponding TypeScript types
|
|
43
43
|
|
|
44
|
-
Exports are available from the package root
|
|
44
|
+
Exports are available from the package root meaning you do not need to include the `dist/` directory in your imports:
|
|
45
45
|
|
|
46
46
|
```ts
|
|
47
47
|
// Notice that for JavaScript/TypeScript, we can just import from the root
|
package/dist/tokens/js/index.mjs
CHANGED