@kiva/kv-tokens 0.14.0 → 1.2.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 +49 -0
- package/configs/kivaTypography.js +3 -2
- package/configs/tailwind.config.js +1 -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.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
|
+
|
|
8
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [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)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* give buttons a default weight ([47dd297](https://github.com/kiva/kv-ui-elements/commit/47dd29762cb8533b2111ec53e7dbce4cf38f5978))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [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)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Features
|
|
29
|
+
|
|
30
|
+
* 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))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [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)
|
|
37
|
+
|
|
38
|
+
**Note:** Version bump only for package @kiva/kv-tokens
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
## [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)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
### Bug Fixes
|
|
48
|
+
|
|
49
|
+
* Make code text color visible against the background. Remove before/after backticks. ([5848830](https://github.com/kiva/kv-ui-elements/commit/5848830bbeff27d6a399dee2f8cb8a304c075bec))
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
6
55
|
# [0.14.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@0.13.0...@kiva/kv-tokens@0.14.0) (2021-10-04)
|
|
7
56
|
|
|
8
57
|
|
|
@@ -156,7 +156,6 @@ const textStyles = (() => {
|
|
|
156
156
|
};
|
|
157
157
|
|
|
158
158
|
const textSmall = {
|
|
159
|
-
fontWeight: fontWeights.medium,
|
|
160
159
|
fontSize: rem(fontSizes.small.sm),
|
|
161
160
|
lineHeight: lineHeights.normal,
|
|
162
161
|
'@screen lg': {
|
|
@@ -303,10 +302,12 @@ const proseOverrides = () => ({
|
|
|
303
302
|
marginTop: rem(space[4]),
|
|
304
303
|
},
|
|
305
304
|
code: false,
|
|
305
|
+
'code::before': false,
|
|
306
|
+
'code::after': false,
|
|
306
307
|
'h2 code': false,
|
|
307
308
|
'h3 code': false,
|
|
308
309
|
pre: {
|
|
309
|
-
color: 'rgb(var(--text-primary))',
|
|
310
|
+
color: 'rgb(var(--text-primary-inverse))',
|
|
310
311
|
backgroundColor: 'rgb(var(--bg-primary-inverse))',
|
|
311
312
|
marginTop: rem(space[4]),
|
|
312
313
|
marginBottom: rem(space[4]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.2.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": "766ee90e4bae55b37a638e9dd30c01aac140f6b0"
|
|
13
13
|
}
|