@kiva/kv-tokens 2.5.0 → 2.7.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 +28 -0
- package/configs/tailwind.config.cjs +6 -1
- package/package.json +5 -3
- package/primitives.json +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.7.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.6.0...@kiva/kv-tokens@2.7.0) (2023-05-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add borderColor default value ([b7fa4ea](https://github.com/kiva/kv-ui-elements/commit/b7fa4ea2688bc92b4bd467bdc73245b6fdf179cc))
|
|
12
|
+
* add custom blog colors ([7e00f04](https://github.com/kiva/kv-ui-elements/commit/7e00f047dec9fdde2b68e0a1e5f8cb951f3baa4a))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
# [2.6.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.5.0...@kiva/kv-tokens@2.6.0) (2023-04-27)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* whitespace ([1b27bd5](https://github.com/kiva/kv-ui-elements/commit/1b27bd528ce36672ca858db57ac06272a502d0e6))
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* implemented initial kv-loan-filters package ([1987069](https://github.com/kiva/kv-ui-elements/commit/1987069227099a2ef1cabf09d1086e6a66adee0d))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
# [2.5.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.4.1...@kiva/kv-tokens@2.5.0) (2023-04-14)
|
|
7
35
|
|
|
8
36
|
|
|
@@ -46,6 +46,8 @@ module.exports = {
|
|
|
46
46
|
marigold: colors.marigold,
|
|
47
47
|
'desert-rose': colors['desert-rose'],
|
|
48
48
|
stone: colors.stone,
|
|
49
|
+
gray: colors.gray,
|
|
50
|
+
social: colors.social,
|
|
49
51
|
// themable colors are defined in the 'extend' section as custom properties
|
|
50
52
|
},
|
|
51
53
|
spacing: {
|
|
@@ -159,7 +161,10 @@ module.exports = {
|
|
|
159
161
|
placeholderColor: buildColorChoices('text'),
|
|
160
162
|
backgroundColor: buildColorChoices('background'),
|
|
161
163
|
gradientColorStops: buildColorChoices('background'),
|
|
162
|
-
borderColor:
|
|
164
|
+
borderColor: {
|
|
165
|
+
DEFAULT: 'currentColor',
|
|
166
|
+
...buildColorChoices('border'),
|
|
167
|
+
},
|
|
163
168
|
divideColor: buildColorChoices('border'),
|
|
164
169
|
ringColor: buildColorChoices('border'),
|
|
165
170
|
ringOffsetColor: buildColorChoices('border'),
|
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"scripts": {
|
|
10
|
-
"test": "echo No tests specified for @kiva/kv-tokens."
|
|
10
|
+
"test": "echo No tests specified for @kiva/kv-tokens.",
|
|
11
|
+
"lint": "eslint --ext .js ./",
|
|
12
|
+
"build": "echo No build needed for @kiva/kv-tokens."
|
|
11
13
|
},
|
|
12
14
|
"dependencies": {
|
|
13
15
|
"@tailwindcss/line-clamp": "^0.4.0",
|
|
14
16
|
"@tailwindcss/typography": "^0.5.1",
|
|
15
17
|
"tailwindcss": "^3.0.18"
|
|
16
18
|
},
|
|
17
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "c442c7a5a998b36082f5ed00addaa6c43c857d74"
|
|
18
20
|
}
|