@kiva/kv-tokens 1.2.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 +11 -0
- package/configs/tailwind.config.js +3 -0
- package/package.json +2 -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
|
+
# [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
|
+
|
|
6
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)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @kiva/kv-tokens
|
|
@@ -170,6 +170,9 @@ 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
|
},
|
|
174
177
|
button: { fontWeight: fontWeights.book },
|
|
175
178
|
h1: textStyles.textH1,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "1.
|
|
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
|
}
|