@parca/profile 0.18.2 → 0.18.3
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.18.3](https://github.com/parca-dev/parca/compare/@parca/profile@0.18.2...@parca/profile@0.18.3) (2025-06-18)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @parca/profile
|
|
9
|
+
|
|
6
10
|
## [0.18.2](https://github.com/parca-dev/parca/compare/@parca/profile@0.18.1...@parca/profile@0.18.2) (2025-06-17)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @parca/profile
|
|
@@ -28,7 +28,7 @@ export function QueryControls({ showProfileTypeSelector, profileTypesData, profi
|
|
|
28
28
|
setUserSumBySelection(newValue.map(option => option.value));
|
|
29
29
|
}, placeholder: "Labels...", styles: {
|
|
30
30
|
indicatorSeparator: () => ({ display: 'none' }),
|
|
31
|
-
menu: provided => ({ ...provided, width: 'max-content' }),
|
|
31
|
+
menu: provided => ({ ...provided, width: 'max-content', zIndex: 50 }), // Setting the same zIndex as drop down menus
|
|
32
32
|
}, isLoading: sumBySelectionLoading, isDisabled: !profileType.delta,
|
|
33
33
|
// @ts-expect-error
|
|
34
34
|
ref: sumByRef, onKeyDown: e => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parca/profile",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.3",
|
|
4
4
|
"description": "Profile viewing libraries",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@headlessui/react": "^1.7.19",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"access": "public",
|
|
78
78
|
"registry": "https://registry.npmjs.org/"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "53e4671f7b81c6fac99ef14e80dad4d3cdbacd54"
|
|
81
81
|
}
|
|
@@ -189,7 +189,7 @@ export function QueryControls({
|
|
|
189
189
|
placeholder="Labels..."
|
|
190
190
|
styles={{
|
|
191
191
|
indicatorSeparator: () => ({display: 'none'}),
|
|
192
|
-
menu: provided => ({...provided, width: 'max-content'}),
|
|
192
|
+
menu: provided => ({...provided, width: 'max-content', zIndex: 50}), // Setting the same zIndex as drop down menus
|
|
193
193
|
}}
|
|
194
194
|
isLoading={sumBySelectionLoading}
|
|
195
195
|
isDisabled={!profileType.delta}
|