@kiva/kv-tokens 2.2.0 → 2.4.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/kivaColors.cjs +3 -0
- package/configs/tailwind.config.cjs +2 -2
- package/package.json +2 -2
- package/primitives.json +9 -0
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.4.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.3.0...@kiva/kv-tokens@2.4.0) (2022-09-24)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* background prop outside definition ([8c81466](https://github.com/kiva/kv-ui-elements/commit/8c81466aab36d35aa6211407bcbbd32bf5677543))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* add dark mint theme ([269d6af](https://github.com/kiva/kv-ui-elements/commit/269d6af35a35bdcac8ca3c1c780bc62926072c8d))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [2.3.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.2.0...@kiva/kv-tokens@2.3.0) (2022-09-21)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* add additional border widths ([#208](https://github.com/kiva/kv-ui-elements/issues/208)) ([7f20a8f](https://github.com/kiva/kv-ui-elements/commit/7f20a8f6897c404370afda7d6dccf549993e2443))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
# [2.2.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-tokens@2.1.0...@kiva/kv-tokens@2.2.0) (2022-07-19)
|
|
7
34
|
|
|
8
35
|
|
package/configs/kivaColors.cjs
CHANGED
|
@@ -6,6 +6,7 @@ const {
|
|
|
6
6
|
dark: darkThemeTokens,
|
|
7
7
|
'dark-green': darkGreenThemeTokens,
|
|
8
8
|
mint: mintThemeTokens,
|
|
9
|
+
'dark-mint': darkMintThemeTokens,
|
|
9
10
|
} = designtokens.colors.theme;
|
|
10
11
|
|
|
11
12
|
/**
|
|
@@ -34,6 +35,7 @@ const defaultTheme = buildCSSVarsFromTokens(defaultThemeTokens);
|
|
|
34
35
|
const darkTheme = buildCSSVarsFromTokens(darkThemeTokens);
|
|
35
36
|
const mintTheme = buildCSSVarsFromTokens(mintThemeTokens);
|
|
36
37
|
const darkGreenTheme = buildCSSVarsFromTokens(darkGreenThemeTokens);
|
|
38
|
+
const darkMintTheme = buildCSSVarsFromTokens(darkMintThemeTokens);
|
|
37
39
|
|
|
38
40
|
// function to allow background opacity and text opacity with tailwind colors
|
|
39
41
|
// https://www.youtube.com/watch?v=MAtaT8BZEAo
|
|
@@ -84,4 +86,5 @@ module.exports = {
|
|
|
84
86
|
darkTheme,
|
|
85
87
|
darkGreenTheme,
|
|
86
88
|
mintTheme,
|
|
89
|
+
darkMintTheme,
|
|
87
90
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-tokens",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"@tailwindcss/typography": "^0.5.1",
|
|
15
15
|
"tailwindcss": "^3.0.18"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "d9663133794c9e0b22fc3b70d14852a8535824eb"
|
|
18
18
|
}
|
package/primitives.json
CHANGED