@kiva/kv-tokens 1.2.0 → 1.3.2
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/README.md +1 -1
- package/configs/tailwind.config.js +5 -3
- package/package.json +4 -4
- 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.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.3.1...@kiva/kv-tokens@1.3.2) (2022-02-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fix empty content error ([ae08e8a](https://github.com/kiva/kv-ui-elements/commit/ae08e8a8edf27917a0a0d398b27b303f027cb887))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* allow buttons to inherit font weights ([593b28f](https://github.com/kiva/kv-ui-elements/commit/593b28f5f2b23ad38b893b64ac866e8287f12479))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [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)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* match previous font smoothing settings ([e6c3edf](https://github.com/kiva/kv-ui-elements/commit/e6c3edf8f696ccd496607ab40b6874a3e63429ea))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## [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)
|
|
40
|
+
|
|
41
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
6
47
|
# [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)
|
|
7
48
|
|
|
8
49
|
|
package/README.md
CHANGED
|
@@ -18,8 +18,7 @@ const {
|
|
|
18
18
|
} = designtokens;
|
|
19
19
|
|
|
20
20
|
module.exports = {
|
|
21
|
-
|
|
22
|
-
darkMode: false, // or 'media' or 'class'
|
|
21
|
+
content: ['./**.*.js'],
|
|
23
22
|
prefix: 'tw-', // prefixes all tailwinds classes with tw. e.g., 'tw-flex tw-mb-2'
|
|
24
23
|
corePlugins: {
|
|
25
24
|
boxShadow: false,
|
|
@@ -170,8 +169,11 @@ module.exports = {
|
|
|
170
169
|
body: {
|
|
171
170
|
...textStyles.textBase,
|
|
172
171
|
color: textBaseColor,
|
|
172
|
+
'-webkit-font-smoothing': 'antialiased',
|
|
173
|
+
'-moz-osx-font-smoothing': 'grayscale',
|
|
174
|
+
'text-rendering': 'optimizeLegibility',
|
|
173
175
|
},
|
|
174
|
-
button: { fontWeight:
|
|
176
|
+
button: { fontWeight: 'inherit' },
|
|
175
177
|
h1: textStyles.textH1,
|
|
176
178
|
h2: textStyles.textH2,
|
|
177
179
|
h3: textStyles.textH3,
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "1.2
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"main": "index.js",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@tailwindcss/typography": "^0.
|
|
10
|
-
"tailwindcss": "
|
|
9
|
+
"@tailwindcss/typography": "^0.5.1",
|
|
10
|
+
"tailwindcss": "^3.0.18"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "12bb59eb8dbffd590a8624347a8a3f98bf5ffba3"
|
|
13
13
|
}
|