@kiva/kv-tokens 1.1.0 → 1.3.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 +41 -0
- package/configs/tailwind.config.js +4 -0
- package/package.json +2 -2
- package/primitives.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,47 @@
|
|
|
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.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.3.0...@kiva/kv-tokens@1.3.1) (2022-01-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* allow buttons to inherit font weights ([593b28f](https://github.com/kiva/kv-ui-elements/commit/593b28f5f2b23ad38b893b64ac866e8287f12479))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* match previous font smoothing settings ([e6c3edf](https://github.com/kiva/kv-ui-elements/commit/e6c3edf8f696ccd496607ab40b6874a3e63429ea))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [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)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [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)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
|
|
41
|
+
* give buttons a default weight ([47dd297](https://github.com/kiva/kv-ui-elements/commit/47dd29762cb8533b2111ec53e7dbce4cf38f5978))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
6
47
|
# [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)
|
|
7
48
|
|
|
8
49
|
|
|
@@ -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: 'inherit' },
|
|
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": "1.1
|
|
3
|
+
"version": "1.3.1",
|
|
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": "0d6beaa042d85c7035cc5f8a436d233e71c4afaa"
|
|
13
13
|
}
|