@parca/profile 0.13.3 → 0.13.4
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 +6 -0
- package/package.json +2 -2
- package/src/IcicleGraph.tsx +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.13.4](https://github.com/parca-dev/parca/compare/ui-v0.13.3...ui-v0.13.4) (2022-06-07)
|
|
7
|
+
|
|
8
|
+
## [0.13.2](https://github.com/parca-dev/parca/compare/ui-v0.13.1...ui-v0.13.2) (2022-05-31)
|
|
9
|
+
|
|
10
|
+
**Note:** Version bump only for package @parca/profile
|
|
11
|
+
|
|
6
12
|
## [0.13.3](https://github.com/parca-dev/parca/compare/ui-v0.13.2...ui-v0.13.3) (2022-06-07)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @parca/profile
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parca/profile",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.4",
|
|
4
4
|
"description": "Profile viewing libraries",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@parca/client": "^0.13.0",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"access": "public",
|
|
20
20
|
"registry": "https://registry.npmjs.org/"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "4ad4fb5220f1cddd26f23bddc3b58e61166aa2d9"
|
|
23
23
|
}
|
package/src/IcicleGraph.tsx
CHANGED
|
@@ -325,8 +325,9 @@ export default function IcicleGraph({
|
|
|
325
325
|
/>
|
|
326
326
|
<svg
|
|
327
327
|
className="font-robotoMono"
|
|
328
|
+
width={width}
|
|
329
|
+
height={height}
|
|
328
330
|
onMouseMove={onMouseMove}
|
|
329
|
-
viewBox={`0 0 ${width} ${height}`}
|
|
330
331
|
preserveAspectRatio="xMinYMid"
|
|
331
332
|
ref={svg}
|
|
332
333
|
>
|