@parca/profile 0.19.65 → 0.19.66

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.19.66](https://github.com/parca-dev/parca/compare/@parca/profile@0.19.65...@parca/profile@0.19.66) (2025-10-16)
7
+
8
+ **Note:** Version bump only for package @parca/profile
9
+
6
10
  ## [0.19.65](https://github.com/parca-dev/parca/compare/@parca/profile@0.19.64...@parca/profile@0.19.65) (2025-10-14)
7
11
 
8
12
  **Note:** Version bump only for package @parca/profile
@@ -96,9 +96,9 @@ export const useVisibleNodes = ({ table, viewport, total, width, selectedRow, ef
96
96
  valueOffset >= selectionOffsetNumber + selectionCumulativeNumber) {
97
97
  continue;
98
98
  }
99
- // Size culling: Skip nodes too small to be visible (< 0.1px width)
99
+ // Size culling: Skip nodes too small to be visible (< 1px width)
100
100
  const computedWidth = (cumulative / totalNumber) * width;
101
- if (computedWidth <= 0.1) {
101
+ if (computedWidth <= 1) {
102
102
  continue;
103
103
  }
104
104
  visibleRows.push(row);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parca/profile",
3
- "version": "0.19.65",
3
+ "version": "0.19.66",
4
4
  "description": "Profile viewing libraries",
5
5
  "dependencies": {
6
6
  "@floating-ui/react": "^0.27.12",
@@ -79,5 +79,5 @@
79
79
  "access": "public",
80
80
  "registry": "https://registry.npmjs.org/"
81
81
  },
82
- "gitHead": "39243b9cc1df678dea98963c2f94e9b381b9e66f"
82
+ "gitHead": "2280ea851364d46018828fdd1eb23794b0d8f339"
83
83
  }
@@ -151,9 +151,9 @@ export const useVisibleNodes = ({
151
151
  continue;
152
152
  }
153
153
 
154
- // Size culling: Skip nodes too small to be visible (< 0.1px width)
154
+ // Size culling: Skip nodes too small to be visible (< 1px width)
155
155
  const computedWidth = (cumulative / totalNumber) * width;
156
- if (computedWidth <= 0.1) {
156
+ if (computedWidth <= 1) {
157
157
  continue;
158
158
  }
159
159