@parca/profile 0.12.23 → 0.12.25

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.12.25](https://github.com/parca-dev/parca/compare/ui-v0.12.24...ui-v0.12.25) (2022-04-27)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.12.23](https://github.com/parca-dev/parca/compare/ui-v0.12.22...ui-v0.12.23) (2022-04-25)
7
11
 
8
12
  **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.12.23",
3
+ "version": "0.12.25",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@parca/client": "^0.12.20",
@@ -19,5 +19,5 @@
19
19
  "access": "public",
20
20
  "registry": "https://registry.npmjs.org/"
21
21
  },
22
- "gitHead": "adfe17cad5627ceb7e3ba6ffa0a3806bf8b7b8b4"
22
+ "gitHead": "813bcc35b44f8b4a16c200ae1c25a2d46b476e59"
23
23
  }
@@ -204,7 +204,7 @@ export const ProfileView = ({
204
204
  color="neutral"
205
205
  onClick={resetIcicleGraph}
206
206
  disabled={curPath.length === 0}
207
- additionalClasses="whitespace-nowrap text-ellipsis"
207
+ className="whitespace-nowrap text-ellipsis"
208
208
  >
209
209
  Reset View
210
210
  </Button>
@@ -212,7 +212,7 @@ export const ProfileView = ({
212
212
 
213
213
  <Button
214
214
  color={`${currentView === 'table' ? 'primary' : 'neutral'}`}
215
- additionalClasses={`rounded-tr-none rounded-br-none w-auto px-8 whitespace-nowrap text-ellipsis no-outline-on-buttons`}
215
+ className="rounded-tr-none rounded-br-none w-auto px-8 whitespace-nowrap text-ellipsis no-outline-on-buttons"
216
216
  onClick={() => switchProfileView('table')}
217
217
  >
218
218
  Table
@@ -220,7 +220,7 @@ export const ProfileView = ({
220
220
 
221
221
  <Button
222
222
  color={`${currentView === 'both' ? 'primary' : 'neutral'}`}
223
- additionalClasses={`rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none border-l-0 border-r-0 w-auto px-8 whitespace-nowrap no-outline-on-buttons no-outline-on-buttons text-ellipsis`}
223
+ className="rounded-tl-none rounded-tr-none rounded-bl-none rounded-br-none border-l-0 border-r-0 w-auto px-8 whitespace-nowrap no-outline-on-buttons no-outline-on-buttons text-ellipsis"
224
224
  onClick={() => switchProfileView('both')}
225
225
  >
226
226
  Both
@@ -228,7 +228,7 @@ export const ProfileView = ({
228
228
 
229
229
  <Button
230
230
  color={`${currentView === 'icicle' ? 'primary' : 'neutral'}`}
231
- additionalClasses={`rounded-tl-none rounded-bl-none w-auto px-8 whitespace-nowrap text-ellipsis no-outline-on-buttons`}
231
+ className="rounded-tl-none rounded-bl-none w-auto px-8 whitespace-nowrap text-ellipsis no-outline-on-buttons"
232
232
  onClick={() => switchProfileView('icicle')}
233
233
  >
234
234
  Icicle Graph