@kiva/kv-tokens 3.1.0 → 3.2.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/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
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.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.1.0...@kiva/kv-tokens@3.2.0) (2025-04-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * lineHeight for large screens ([4d12094](https://github.com/kiva/kv-ui-elements/commit/4d12094ae75f496fd7dbec6bcb40bcd687d6c9e5))
12
+
13
+
14
+ ### Features
15
+
16
+ * changing lineHeight to tight in h2 text ([b5ffeda](https://github.com/kiva/kv-ui-elements/commit/b5ffedac46e0495db649cb27627639f929f38590))
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.1.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.0.0...@kiva/kv-tokens@3.1.0) (2025-01-21)
7
23
 
8
24
 
@@ -100,7 +100,7 @@ export const textStyles = (() => {
100
100
  fontSize: rem(fontSizes.h2.sm),
101
101
  fontWeight: fontWeights.medium,
102
102
  letterSpacing: em(letterSpacings.normal, fontSizes.h2.sm),
103
- lineHeight: lineHeights.normal,
103
+ lineHeight: lineHeights.tight,
104
104
  '@screen md': {
105
105
  fontSize: rem(fontSizes.h2.md),
106
106
  letterSpacing: em(letterSpacings['-0.3'], fontSizes.h2.md),
@@ -108,6 +108,7 @@ export const textStyles = (() => {
108
108
  '@screen lg': {
109
109
  fontSize: rem(fontSizes.h2.lg),
110
110
  letterSpacing: em(letterSpacings['-0.3'], fontSizes.h2.lg),
111
+ lineHeight: lineHeights['nearly-none'],
111
112
  },
112
113
  };
113
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -15,5 +15,5 @@
15
15
  "@tailwindcss/typography": "^0.5.1",
16
16
  "tailwindcss": "^3.4.3"
17
17
  },
18
- "gitHead": "d4f5c7ade15177229c8a37dfa7c4b34b99ca0d24"
18
+ "gitHead": "d31b947928eca67e11d7048f84c6a5516677cf99"
19
19
  }