@parca/profile 0.16.153 → 0.16.154

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,10 @@
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.16.154 (2023-03-28)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## 0.16.153 (2023-03-28)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.16.153",
3
+ "version": "0.16.154",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@parca/client": "^0.16.69",
7
- "@parca/components": "^0.16.124",
7
+ "@parca/components": "^0.16.125",
8
8
  "@parca/dynamicsize": "^0.16.54",
9
9
  "@parca/hooks": "^0.0.2",
10
10
  "@parca/parser": "^0.16.55",
@@ -46,5 +46,5 @@
46
46
  "access": "public",
47
47
  "registry": "https://registry.npmjs.org/"
48
48
  },
49
- "gitHead": "281f5a7c2be141ac1f72b3067cdcd30a1fd55822"
49
+ "gitHead": "51ca8c627666f3861f4a76acc829882fd8ad6677"
50
50
  }
@@ -1,33 +0,0 @@
1
- import {action} from '@storybook/addon-actions';
2
- import {Canvas, Meta, Story} from '@storybook/addon-docs';
3
-
4
- import {QueryResponse} from '@parca/client';
5
-
6
- import queryResponseDiff from '../testdata/fg-diff.json';
7
- import queryResponseSimple from '../testdata/fg-simple.json';
8
- import ProfileIcicleGraph from './index';
9
-
10
- <Meta title="template/ProfileIcicleGraph" component={ProfileIcicleGraph} />
11
-
12
- # ProfileIcicleGraph
13
-
14
- ProfileIcicleGraph documentation.
15
-
16
- <Canvas>
17
- <Story
18
- name="Simple"
19
- args={{
20
- graph: queryResponseSimple.flamegraph,
21
- }}
22
- >
23
- {args => <ProfileIcicleGraph {...args} />}
24
- </Story>
25
- <Story
26
- name="Diff"
27
- args={{
28
- graph: queryResponseDiff.flamegraph,
29
- }}
30
- >
31
- {args => <ProfileIcicleGraph {...args} />}
32
- </Story>
33
- </Canvas>