@kiva/kv-tokens 1.3.0 → 2.0.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 +44 -0
- package/README.md +1 -1
- package/configs/tailwind.config.js +2 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,50 @@
|
|
|
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
|
+
# [2.0.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.3.3...@kiva/kv-tokens@2.0.0) (2022-02-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* feat!: upgrade Tailwind to v3 ([18c1653](https://github.com/kiva/kv-ui-elements/commit/18c1653565eb42b8abfaaba6b3712173ff341850))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
* Tailwind dependency is now v3
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [1.3.3](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@1.3.2...@kiva/kv-tokens@1.3.3) (2022-02-03)
|
|
21
|
+
|
|
22
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
## [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)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Bug Fixes
|
|
32
|
+
|
|
33
|
+
* fix empty content error ([ae08e8a](https://github.com/kiva/kv-ui-elements/commit/ae08e8a8edf27917a0a0d398b27b303f027cb887))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
## [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)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
### Bug Fixes
|
|
43
|
+
|
|
44
|
+
* allow buttons to inherit font weights ([593b28f](https://github.com/kiva/kv-ui-elements/commit/593b28f5f2b23ad38b893b64ac866e8287f12479))
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
6
50
|
# [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
51
|
|
|
8
52
|
|
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,
|
|
@@ -174,7 +173,7 @@ module.exports = {
|
|
|
174
173
|
'-moz-osx-font-smoothing': 'grayscale',
|
|
175
174
|
'text-rendering': 'optimizeLegibility',
|
|
176
175
|
},
|
|
177
|
-
button: { fontWeight:
|
|
176
|
+
button: { fontWeight: 'inherit' },
|
|
178
177
|
h1: textStyles.textH1,
|
|
179
178
|
h2: textStyles.textH2,
|
|
180
179
|
h3: textStyles.textH3,
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
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": "b5b3dc488e1a437d2af4e26a07b5d0798981651d"
|
|
13
13
|
}
|