@kiva/kv-components 3.98.0 → 3.98.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,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.98.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.98.0...@kiva/kv-components@3.98.1) (2024-09-04)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * resolve chart issue with vue 3 ([93716c6](https://github.com/kiva/kv-ui-elements/commit/93716c61bebff132a6bb6bd8138a3ffab2336c0b))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.98.0](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.97.0...@kiva/kv-components@3.98.0) (2024-09-03)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.98.0",
3
+ "version": "3.98.1",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -84,5 +84,5 @@
84
84
  "optional": true
85
85
  }
86
86
  },
87
- "gitHead": "5703aed220722cffdda318c700cb4d5c97ed083c"
87
+ "gitHead": "b2fd2967b6606a846281d8dde50fae68cf9c0f01"
88
88
  }
@@ -43,7 +43,7 @@
43
43
 
44
44
  <script>
45
45
  import numeral from 'numeral';
46
- import { getTreemap } from 'treemap-squarify';
46
+ import treemap from 'treemap-squarify';
47
47
  import kvTokensPrimitives from '@kiva/kv-tokens/primitives.json';
48
48
  import { throttle } from '../utils/throttle';
49
49
  import KvTooltip from './KvTooltip.vue';
@@ -100,7 +100,7 @@ export default {
100
100
  }
101
101
 
102
102
  // Calculate treemap blocks using canvas size 100x100 to easily translate to percentages
103
- const blocks = getTreemap({
103
+ const blocks = treemap.getTreemap({
104
104
  data: this.values,
105
105
  width: 100,
106
106
  height: 100,