@kiva/kv-components 3.108.0 → 3.109.1

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,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
+ ## [3.109.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.109.0...@kiva/kv-components@3.109.1) (2024-11-19)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * add tailwind config to kv-components exports ([74388fc](https://github.com/kiva/kv-ui-elements/commit/74388fc3f65f679e6cb7e16ea51d6f71b6d96412))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.109.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.108.0...@kiva/kv-components@3.109.0) (2024-11-18)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * storybook static directory should include all of /dist ([64a5b22](https://github.com/kiva/kv-ui-elements/commit/64a5b22d0f5e3bb9b02c8693dcdb59291b43061e))
23
+
24
+
25
+ ### Features
26
+
27
+ * serve static assets from kvui directory MP-544 ([840f6de](https://github.com/kiva/kv-ui-elements/commit/840f6de89f213143218d28e82a7ef0be1de319b6))
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.108.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.107.2...@kiva/kv-components@3.108.0) (2024-11-15)
7
34
 
8
35
 
@@ -8,7 +8,7 @@ const config = {
8
8
  ],
9
9
 
10
10
  staticDirs: [
11
- '../../../../dist/assets',
11
+ '../../../../dist',
12
12
  ],
13
13
 
14
14
  addons: [
@@ -66,7 +66,7 @@ export default {
66
66
  * --border-danger: '255, 255, 255',
67
67
  * --border-danger-highlight: '255, 255, 255',
68
68
  *
69
- * --heading-underline-primary: url('/heading-underline.svg#FFFFFF'),
69
+ * --heading-underline-primary: url('/kvui/heading-underline.svg#FFFFFF'),
70
70
  * }
71
71
  * ```
72
72
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.108.0",
3
+ "version": "3.109.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -61,7 +61,7 @@
61
61
  "build": "tsup utils/*.js --outDir dist/utils --format cjs,esm --clean && cp -R vue/ dist/components/ && cp -R data/ dist/data/"
62
62
  },
63
63
  "dependencies": {
64
- "@kiva/kv-tokens": "^2.14.0",
64
+ "@kiva/kv-tokens": "^2.15.0",
65
65
  "@mdi/js": "^5.9.55",
66
66
  "@vueuse/integrations": "^7.6.0",
67
67
  "aria-hidden": "^1.1.3",
@@ -84,6 +84,10 @@
84
84
  "./dist/components/*.vue": {
85
85
  "import": "./dist/components/*.vue",
86
86
  "require": "./dist/components/*.vue"
87
+ },
88
+ "./tailwind.config.cjs": {
89
+ "import": "./tailwind.config.cjs",
90
+ "require": "./tailwind.config.cjs"
87
91
  }
88
92
  },
89
93
  "peerDependencies": {
@@ -95,5 +99,5 @@
95
99
  "optional": true
96
100
  }
97
101
  },
98
- "gitHead": "081b5ca9ae74b85b3db13f40043252381f0ab822"
102
+ "gitHead": "348fed6424606085aa4450a0e60622e32978234b"
99
103
  }
@@ -8,7 +8,7 @@ const config = {
8
8
  ],
9
9
 
10
10
  staticDirs: [
11
- '../../../../dist/assets',
11
+ '../../../../dist',
12
12
  ],
13
13
 
14
14
  addons: [
@@ -66,7 +66,7 @@ export default {
66
66
  * --border-danger: '255, 255, 255',
67
67
  * --border-danger-highlight: '255, 255, 255',
68
68
  *
69
- * --heading-underline-primary: url('/heading-underline.svg#FFFFFF'),
69
+ * --heading-underline-primary: url('/kvui/heading-underline.svg#FFFFFF'),
70
70
  * }
71
71
  * ```
72
72
  *