@khanacademy/wonder-blocks-tokens 10.2.1 → 10.4.0
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/.turbo/turbo-build$colon$css.log +1 -1
- package/CHANGELOG.md +26 -0
- package/dist/css/index.css +493 -23
- package/dist/css/vars.css +462 -22
- package/dist/es/index.js +10 -10
- package/dist/index.d.ts +379 -1
- package/dist/index.js +10 -10
- package/dist/internal/generate-tokens.d.ts +1 -1
- package/dist/theme/default.d.ts +380 -0
- package/dist/{tokens → theme/primitive}/font.d.ts +32 -0
- package/dist/theme/semantic/internal/primitive-font-thunderblocks.d.ts +73 -0
- package/dist/theme/semantic/semantic-color-thunderblocks.d.ts +317 -0
- package/dist/theme/semantic/semantic-color.d.ts +328 -0
- package/dist/theme/thunderblocks.d.ts +380 -0
- package/dist/tokens/color.d.ts +2 -0
- package/dist/tokens/theme.d.ts +380 -0
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @khanacademy/wonder-blocks-tokens@10.
|
|
2
|
+
> @khanacademy/wonder-blocks-tokens@10.4.0 build:css /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-tokens
|
|
3
3
|
> node -r @swc-node/register ./src/build/generate-css-variables.ts
|
|
4
4
|
|
|
5
5
|
CSS variables generated successfully in: /home/runner/work/wonder-blocks/wonder-blocks/packages/wonder-blocks-tokens/dist/css
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-tokens
|
|
2
2
|
|
|
3
|
+
## 10.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b1ee2b4: Adds `chonky` category and `ActivityIconButton` component.
|
|
8
|
+
- 7abcccf: Add `core.background` and `core.foreground` categories.
|
|
9
|
+
- 9bacc1a: Adds new `semanticColor.core` category
|
|
10
|
+
- 1c3c335: Adds `semanticColor.link` tokens category
|
|
11
|
+
- 689f5d3: Adds `core` category to the ThunderBlocks semanticColor theme
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 9bacc1a: Replaces all existing `semanticColor.border` references to use `semanticColor.core.border`
|
|
16
|
+
|
|
17
|
+
## 10.3.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- dd76e7c: - Update existing font tokens to use themes.
|
|
22
|
+
- Add font.heading and font.body tokens for size and lineHeight.
|
|
23
|
+
- Add font.weight.medium for the Thunderblocks theme with Plus Jakarta Sans.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- @khanacademy/wonder-blocks-theming@3.4.0
|
|
28
|
+
|
|
3
29
|
## 10.2.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|