@kiva/kv-tokens 3.7.3-next.0 → 3.7.3-next.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/CHANGELOG.md +11 -0
- package/configs/tailwind.config.js +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.7.3-next.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.3-next.0...@kiva/kv-tokens@3.7.3-next.1) (2026-03-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* set html header elements styles based on new type definitions, tweak underline size to match ([e22c128](https://github.com/kiva/kv-ui-elements/commit/e22c128d9b8fe5704fe534ba440c36dd40131071))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.7.3-next.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.2...@kiva/kv-tokens@3.7.3-next.0) (2026-03-19)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -205,11 +205,11 @@ export default {
|
|
|
205
205
|
'text-rendering': 'optimizeLegibility',
|
|
206
206
|
},
|
|
207
207
|
button: { fontWeight: 'inherit' },
|
|
208
|
-
h1: textStyles.
|
|
209
|
-
h2: textStyles.
|
|
210
|
-
h3: textStyles.
|
|
211
|
-
h4: textStyles.
|
|
212
|
-
h5: textStyles.
|
|
208
|
+
h1: textStyles.textDisplay,
|
|
209
|
+
h2: textStyles.textHeadline,
|
|
210
|
+
h3: textStyles.textHeadlineTwo,
|
|
211
|
+
h4: textStyles.textSubheadline,
|
|
212
|
+
h5: textStyles.textTitle,
|
|
213
213
|
small: textStyles.textSmall,
|
|
214
214
|
code: {
|
|
215
215
|
fontSize: '0.875em',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "3.7.3-next.
|
|
3
|
+
"version": "3.7.3-next.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"@tailwindcss/typography": "^0.5.1",
|
|
24
24
|
"tailwindcss": "^3.4.3"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "825341736b7a824336db7b9fc1f373f1ba38e94f"
|
|
27
27
|
}
|