@kiva/kv-tokens 3.7.4 → 3.7.6
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 +23 -0
- package/configs/kivaTypography.js +2 -2
- package/configs/tailwind.config.js +1 -0
- package/package.json +2 -2
- package/primitives.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,29 @@
|
|
|
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.6](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.5...@kiva/kv-tokens@3.7.6) (2026-04-02)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* expose new tw-text-label class ([565aaff](https://github.com/kiva/kv-ui-elements/commit/565aaffe560ca935fcb87daa457a0a9b50f05114))
|
|
12
|
+
* update font-weight on new tw-text-caption class ([3076910](https://github.com/kiva/kv-ui-elements/commit/30769103e11241d7fae5a43c968aeb7fb30a288e))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [3.7.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.4...@kiva/kv-tokens@3.7.5) (2026-04-01)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* found a couple typos in the updated defs ([30dca19](https://github.com/kiva/kv-ui-elements/commit/30dca19d1b15ab3c4bdb64a07eaa504a7d6d721c))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
6
29
|
## [3.7.4](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.3...@kiva/kv-tokens@3.7.4) (2026-04-01)
|
|
7
30
|
|
|
8
31
|
|
|
@@ -384,7 +384,7 @@ export const textStyles = (() => {
|
|
|
384
384
|
const textBase = {
|
|
385
385
|
fontWeight: fontWeights.light,
|
|
386
386
|
fontSize: rem(fontSizes.base.sm),
|
|
387
|
-
lineHeight: em(lineHeightsAbsolute.base.sm, fontSizes.
|
|
387
|
+
lineHeight: em(lineHeightsAbsolute.base.sm, fontSizes.base.sm),
|
|
388
388
|
};
|
|
389
389
|
|
|
390
390
|
const textSmall = {
|
|
@@ -533,7 +533,7 @@ export const textStyles = (() => {
|
|
|
533
533
|
|
|
534
534
|
const textCaption = {
|
|
535
535
|
fontFamily: fonts.sans,
|
|
536
|
-
fontWeight: fontWeights.
|
|
536
|
+
fontWeight: fontWeights.light,
|
|
537
537
|
fontSize: rem(semanticFontSizes.small.small),
|
|
538
538
|
letterSpacing: em(letterSpacings.normal, semanticFontSizes.small.small),
|
|
539
539
|
lineHeight: em(lineHeightsAbsolute.caption.sm, semanticFontSizes.small.small),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.6",
|
|
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": "94317606c1fbe6d9d75ebb36504bace5312a09e1"
|
|
27
27
|
}
|