@parca/profile 0.15.18 → 0.15.19

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,22 @@
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
+ ## [0.15.19](https://github.com/parca-dev/parca/compare/ui-v0.15.18...ui-v0.15.19) (2022-09-08)
7
+
8
+
9
+
10
+ ## [0.15.17](https://github.com/parca-dev/parca/compare/ui-v0.15.10...ui-v0.15.17) (2022-09-07)
11
+
12
+
13
+
14
+ ## [0.15.10](https://github.com/parca-dev/parca/compare/ui-v0.15.8...ui-v0.15.10) (2022-08-30)
15
+
16
+ **Note:** Version bump only for package @parca/profile
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.15.18](https://github.com/parca-dev/parca/compare/ui-v0.15.17...ui-v0.15.18) (2022-09-08)
7
23
 
8
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.15.18",
3
+ "version": "0.15.19",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@iconify/react": "^3.2.2",
@@ -23,5 +23,5 @@
23
23
  "access": "public",
24
24
  "registry": "https://registry.npmjs.org/"
25
25
  },
26
- "gitHead": "6af20931851774b1548661a5a47ccfd71b1a2c61"
26
+ "gitHead": "bd028ff3e017cfeda0b743b2426f8d30f92b72f9"
27
27
  }
@@ -22,6 +22,7 @@ import {getLastItem, diffColor, isSearchMatch} from '@parca/functions';
22
22
  import {useAppSelector, selectDarkMode, selectSearchNodeString} from '@parca/store';
23
23
 
24
24
  import {hexifyAddress} from './utils';
25
+ import {HoveringNode} from '@parca/components/src/GraphTooltip';
25
26
 
26
27
  interface IcicleGraphProps {
27
28
  graph: Flamegraph;
@@ -336,7 +337,7 @@ export default function IcicleGraph({
336
337
  total={total}
337
338
  x={pos[0]}
338
339
  y={pos[1]}
339
- hoveringNode={hoveringNode}
340
+ hoveringNode={hoveringNode as HoveringNode}
340
341
  contextElement={svg.current}
341
342
  />
342
343
  <svg