@kiva/kv-components 3.86.1 → 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,25 @@
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
+
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)
18
+
19
+ **Note:** Version bump only for package @kiva/kv-components
20
+
21
+
22
+
23
+
24
+
6
25
  ## [3.86.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.86.0...@kiva/kv-components@3.86.1) (2024-07-12)
7
26
 
8
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.86.1",
3
+ "version": "3.87.0",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -53,7 +53,7 @@
53
53
  "build": "echo No build needed for @kiva/kv-components."
54
54
  },
55
55
  "dependencies": {
56
- "@kiva/kv-tokens": "^2.11.2",
56
+ "@kiva/kv-tokens": "^2.12.0",
57
57
  "@mdi/js": "^5.9.55",
58
58
  "@vueuse/integrations": "^7.6.0",
59
59
  "aria-hidden": "^1.1.3",
@@ -75,5 +75,5 @@
75
75
  "optional": true
76
76
  }
77
77
  },
78
- "gitHead": "b98f8f3bd86b4e63be4fbfe9331df4d6e8c1d874"
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
+ };