@kiva/kv-components 3.86.2 → 3.87.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
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
# [3.87.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.86.2...@kiva/kv-components@3.87.0) (2024-07-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* dark stone theme provider added ([#426](https://github.com/kiva/kv-ui-elements/issues/426)) ([8a8ea0a](https://github.com/kiva/kv-ui-elements/commit/8a8ea0aa548c9e0e125fa2219a53a2870cca289c))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.86.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.86.1...@kiva/kv-components@3.86.2) (2024-07-12)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @kiva/kv-components
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kiva/kv-components",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.87.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"optional": true
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "f32f2e739ca742820b42f29f12777d49f915752b"
|
|
79
79
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import primitives from '@kiva/kv-tokens/primitives.json';
|
|
2
2
|
import {
|
|
3
|
-
defaultTheme, darkTheme, darkGreenTheme, mintTheme, darkMintTheme,
|
|
3
|
+
defaultTheme, darkTheme, darkGreenTheme, mintTheme, darkMintTheme, darkStoneTheme,
|
|
4
4
|
} from '@kiva/kv-tokens/configs/kivaColors.cjs';
|
|
5
5
|
import KvButton from '../KvButton.vue';
|
|
6
6
|
import KvGrid from '../KvGrid.vue';
|
|
@@ -123,6 +123,7 @@ const Template = (args, {
|
|
|
123
123
|
darkTheme,
|
|
124
124
|
mintTheme,
|
|
125
125
|
darkMintTheme,
|
|
126
|
+
darkStoneTheme,
|
|
126
127
|
};
|
|
127
128
|
},
|
|
128
129
|
template: `
|
|
@@ -166,3 +167,8 @@ Custom.args = {
|
|
|
166
167
|
'--bg-action-highlight': '0, 0, 150',
|
|
167
168
|
},
|
|
168
169
|
};
|
|
170
|
+
|
|
171
|
+
export const DarkStone = Template.bind({});
|
|
172
|
+
DarkStone.args = {
|
|
173
|
+
theme: darkStoneTheme,
|
|
174
|
+
};
|