@kiva/kv-tokens 3.3.0 → 3.4.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 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.4.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.4.0...@kiva/kv-tokens@3.4.1) (2025-08-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * update with latest scale from design ([ddc0864](https://github.com/kiva/kv-ui-elements/commit/ddc086430028a60d933ede8b91e6c4beb257e197))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.3.0...@kiva/kv-tokens@3.4.0) (2025-08-21)
18
+
19
+
20
+ ### Features
21
+
22
+ * letter spacing updated for h3 ([#646](https://github.com/kiva/kv-ui-elements/issues/646)) ([98004ff](https://github.com/kiva/kv-ui-elements/commit/98004ffb70a07b2e767e8f7be1a906be59b4ae43))
23
+
24
+
25
+
26
+
27
+
6
28
  # [3.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@3.2.1...@kiva/kv-tokens@3.3.0) (2025-08-04)
7
29
 
8
30
 
@@ -115,7 +115,7 @@ export const textStyles = (() => {
115
115
  const textH3 = {
116
116
  fontSize: rem(fontSizes.h3.sm),
117
117
  fontWeight: fontWeights.normal,
118
- letterSpacing: em(letterSpacings['-0.3'], fontSizes.h3.sm),
118
+ letterSpacing: em(letterSpacings['-1'], fontSizes.h3.sm),
119
119
  lineHeight: lineHeights.tight,
120
120
  '@screen md': {
121
121
  fontSize: rem(fontSizes.h3.md),
@@ -110,13 +110,12 @@ export default {
110
110
  },
111
111
  borderRadius: {
112
112
  none: '0px',
113
+ xs: rem(radii.xs),
113
114
  sm: rem(radii.sm),
115
+ md: rem(radii.md),
114
116
  DEFAULT: rem(radii.default),
115
- // md: '0.375rem',
116
117
  lg: rem(radii.lg),
117
- // xl: '0.75rem',
118
- // '2xl': '1rem',
119
- // '3xl': '1.5rem',
118
+ xl: rem(radii.xl),
120
119
  full: '500rem',
121
120
  },
122
121
  opacity: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "3.3.0",
3
+ "version": "3.4.1",
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": "1d3e50e38d67b4f96e8c0c4ecd212698e10ef2bc"
18
+ "gitHead": "d6faecba8a629cf10ff434d9fdcbad291a517fe1"
19
19
  }
package/primitives.js CHANGED
@@ -512,9 +512,12 @@ export default {
512
512
  },
513
513
  shadows: {},
514
514
  radii: {
515
- sm: 4,
515
+ xs: 4,
516
+ sm: 8,
517
+ md: 12,
516
518
  default: 16,
517
- lg: 40,
519
+ lg: 20,
520
+ xl: 24,
518
521
  },
519
522
  opacity: {
520
523
  default: 1,