@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 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]),
@@ -171,6 +171,7 @@ module.exports = {
171
171
  ...textStyles.textBase,
172
172
  color: textBaseColor,
173
173
  },
174
+ button: { fontWeight: fontWeights.book },
174
175
  h1: textStyles.textH1,
175
176
  h2: textStyles.textH2,
176
177
  h3: textStyles.textH3,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-tokens",
3
- "version": "0.14.0",
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": "07cfb01068ef2c7424b604f80eca71c31b4e9c19"
12
+ "gitHead": "766ee90e4bae55b37a638e9dd30c01aac140f6b0"
13
13
  }
package/primitives.json CHANGED
@@ -160,9 +160,9 @@
160
160
  "lg": 112
161
161
  },
162
162
  "small": {
163
- "sm": 12,
164
- "md": 12,
165
- "lg": 13
163
+ "sm": 13,
164
+ "md": 13,
165
+ "lg": 14
166
166
  },
167
167
  "h1": {
168
168
  "sm": 40,