@kiva/kv-tokens 0.14.1 → 1.3.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 +49 -0
- package/configs/kivaTypography.js +0 -1
- package/configs/tailwind.config.js +4 -0
- package/package.json +2 -2
- package/primitives.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,55 @@
|
|
|
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
|
+
# [1.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.2.1...@kiva/kv-tokens@1.3.0) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* match previous font smoothing settings ([e6c3edf](https://github.com/kiva/kv-ui-elements/commit/e6c3edf8f696ccd496607ab40b6874a3e63429ea))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.2.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.2.0...@kiva/kv-tokens@1.2.1) (2021-11-24)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [1.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.1.0...@kiva/kv-tokens@1.2.0) (2021-11-17)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* give buttons a default weight ([47dd297](https://github.com/kiva/kv-ui-elements/commit/47dd29762cb8533b2111ec53e7dbce4cf38f5978))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [1.1.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.0.0...@kiva/kv-tokens@1.1.0) (2021-10-20)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* allow font weight for 'text-small' class to be set on case-by-case basis ([3a33b4b](https://github.com/kiva/kv-ui-elements/commit/3a33b4b5eaad7f97b3e5579fedbc4f6095d6d12f))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
# [1.0.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@0.14.1...@kiva/kv-tokens@1.0.0) (2021-10-07)
|
|
48
|
+
|
|
49
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
6
55
|
## [0.14.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@0.14.0...@kiva/kv-tokens@0.14.1) (2021-10-06)
|
|
7
56
|
|
|
8
57
|
|
|
@@ -170,7 +170,11 @@ module.exports = {
|
|
|
170
170
|
body: {
|
|
171
171
|
...textStyles.textBase,
|
|
172
172
|
color: textBaseColor,
|
|
173
|
+
'-webkit-font-smoothing': 'antialiased',
|
|
174
|
+
'-moz-osx-font-smoothing': 'grayscale',
|
|
175
|
+
'text-rendering': 'optimizeLegibility',
|
|
173
176
|
},
|
|
177
|
+
button: { fontWeight: fontWeights.book },
|
|
174
178
|
h1: textStyles.textH1,
|
|
175
179
|
h2: textStyles.textH2,
|
|
176
180
|
h3: textStyles.textH3,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"@tailwindcss/typography": "^0.4.0",
|
|
10
10
|
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.1.0"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "9a0be824bac77677ba75ebd1b77b70ba86ff3c0b"
|
|
13
13
|
}
|