@kiva/kv-tokens 3.7.3 → 3.7.5

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 CHANGED
@@ -3,6 +3,28 @@
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.5](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.4...@kiva/kv-tokens@3.7.5) (2026-04-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * found a couple typos in the updated defs ([30dca19](https://github.com/kiva/kv-ui-elements/commit/30dca19d1b15ab3c4bdb64a07eaa504a7d6d721c))
12
+
13
+
14
+
15
+
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * update global base and small type sizes to match updated design definitions ([9b90164](https://github.com/kiva/kv-ui-elements/commit/9b901648e2d71164e108f18c628c0e7c0b8a62c2))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [3.7.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.7.2...@kiva/kv-tokens@3.7.3) (2026-03-25)
7
29
 
8
30
 
@@ -384,20 +384,14 @@ export const textStyles = (() => {
384
384
  const textBase = {
385
385
  fontWeight: fontWeights.light,
386
386
  fontSize: rem(fontSizes.base.sm),
387
- letterSpacing: em(letterSpacings.normal, fontSizes.base.sm),
388
- lineHeight: lineHeights.normal,
389
- '@screen lg': {
390
- fontSize: rem(fontSizes.base.lg),
391
- letterSpacing: em(letterSpacings.normal, fontSizes.base.sm),
392
- },
387
+ lineHeight: em(lineHeightsAbsolute.base.sm, fontSizes.base.sm),
393
388
  };
394
389
 
395
390
  const textSmall = {
396
391
  fontSize: rem(fontSizes.small.sm),
397
- lineHeight: lineHeights.normal,
398
- '@screen lg': {
399
- fontSize: rem(fontSizes.small.lg),
400
- },
392
+ fontWeight: fontWeights.light,
393
+ letterSpacing: em(letterSpacings.normal, fontSizes.small.sm),
394
+ lineHeight: em(lineHeightsAbsolute.caption.sm, fontSizes.small.sm),
401
395
  };
402
396
 
403
397
  const textLink = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "3.7.3",
3
+ "version": "3.7.5",
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": "9e6157c3083e511708704a84b177fa924e1ec2c7"
26
+ "gitHead": "4b209499a6edd2f1b6482be3c523607292f1e9e9"
27
27
  }
package/primitives.js CHANGED
@@ -433,7 +433,7 @@ export default {
433
433
  base: {
434
434
  sm: 16,
435
435
  md: 16,
436
- lg: 17,
436
+ lg: 16,
437
437
  },
438
438
  jumbo: {
439
439
  sm: 42,
@@ -441,8 +441,8 @@ export default {
441
441
  lg: 72,
442
442
  },
443
443
  small: {
444
- sm: 13,
445
- md: 13,
444
+ sm: 14,
445
+ md: 14,
446
446
  lg: 14,
447
447
  },
448
448
  h1: {
@@ -517,6 +517,7 @@ export default {
517
517
  },
518
518
  },
519
519
  fontWeights: {
520
+ // Conicides with "book" for Post Grotesk in Figma
520
521
  light: 300,
521
522
  // Note: this is referred to as "medium" in the figma files for Post Grotesk but matches the font-weight of the font file we load
522
523
  normal: 400,