@kiva/kv-tokens 2.8.0 → 2.10.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 +27 -0
- package/configs/tailwind.config.cjs +4 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
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.10.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.9.0...@kiva/kv-tokens@2.10.0) (2023-09-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* slightly larger default box shadow ([705f77b](https://github.com/kiva/kv-ui-elements/commit/705f77b90a8a319b6ed9c6623ef956a39e1f4790))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.9.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.8.0...@kiva/kv-tokens@2.9.0) (2023-08-31)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* change md to lg ([7857cfa](https://github.com/kiva/kv-ui-elements/commit/7857cfa6535b531b4f1e069040641b0b92679231))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* add box shadows to tokens ([47a16aa](https://github.com/kiva/kv-ui-elements/commit/47a16aa95814e3f566dce53d65b56bfc694b4828))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [2.8.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.7.0...@kiva/kv-tokens@2.8.0) (2023-05-24)
|
|
7
34
|
|
|
8
35
|
|
|
@@ -22,7 +22,6 @@ module.exports = {
|
|
|
22
22
|
content: ['./**.*.js'],
|
|
23
23
|
prefix: 'tw-', // prefixes all tailwinds classes with tw. e.g., 'tw-flex tw-mb-2'
|
|
24
24
|
corePlugins: {
|
|
25
|
-
boxShadow: false,
|
|
26
25
|
container: false,
|
|
27
26
|
fontSize: false,
|
|
28
27
|
letterSpacing: false,
|
|
@@ -126,6 +125,10 @@ module.exports = {
|
|
|
126
125
|
troposphere: zIndices.troposphere,
|
|
127
126
|
stratosphere: zIndices.stratosphere,
|
|
128
127
|
},
|
|
128
|
+
boxShadow: {
|
|
129
|
+
DEFAULT: '0 1px 4px 0 rgb(0 0 0 / 0.08)',
|
|
130
|
+
lg: '0 4px 12px rgba(0, 0, 0, 0.08)',
|
|
131
|
+
},
|
|
129
132
|
extend: {
|
|
130
133
|
typography: kivaTypography.proseOverrides, // prose plugin overrides
|
|
131
134
|
height: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -16,5 +16,5 @@
|
|
|
16
16
|
"@tailwindcss/typography": "^0.5.1",
|
|
17
17
|
"tailwindcss": "^3.0.18"
|
|
18
18
|
},
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "4ce025324410f92a58a6e235886145d501290f79"
|
|
20
20
|
}
|