@kiva/kv-tokens 3.4.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 +11 -0
- package/configs/tailwind.config.js +3 -4
- package/package.json +2 -2
- package/primitives.js +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
|
|
6
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)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -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.4.
|
|
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
|
}
|