@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 +22 -0
- package/configs/kivaTypography.js +1 -1
- package/configs/tailwind.config.js +3 -4
- package/package.json +2 -2
- package/primitives.js +5 -2
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['-
|
|
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
|
-
|
|
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
|
+
"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": "
|
|
18
|
+
"gitHead": "d6faecba8a629cf10ff434d9fdcbad291a517fe1"
|
|
19
19
|
}
|