Skip to content

Commit 2a06058

Browse files
chore: version packages
1 parent 7917828 commit 2a06058

5 files changed

Lines changed: 38 additions & 22 deletions

File tree

.changeset/better-ideas-watch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/fix-element-timing-clear.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

package-lock.json

Lines changed: 29 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/storybook-addon-performance-panel/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @github-ui/storybook-addon-performance-panel
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#35](https://github.com/github/storybook-addon-performance-panel/pull/35) [`8bc7842`](https://github.com/github/storybook-addon-performance-panel/commit/8bc784229794c53b820652dd5d92e77ee7847684) Thanks [@mattcosta7](https://github.com/mattcosta7)! - Improve forced reflow detection by instrumenting CSS style property setters. Previously only layout-triggering getter reads were monitored, so write-then-read patterns using `element.style.width = '...'` or `style.setProperty()` were missed. The collector now intercepts writes to layout-affecting CSS properties (width, height, margin, padding, position, etc.) to correctly mark layout as dirty before a subsequent reflow-triggering read.
8+
9+
- [#35](https://github.com/github/storybook-addon-performance-panel/pull/35) [`4a26caf`](https://github.com/github/storybook-addon-performance-panel/commit/4a26caf59e6c0b03857d2a420bd87ef297ec8d9e) Thanks [@mattcosta7](https://github.com/mattcosta7)! - Fix Element Timing collector not clearing on reset or story switch. Entries from the browser's performance timeline persisted across resets because `buffered: true` replayed stale entries. The collector now tracks an epoch timestamp and filters out entries recorded before the last reset/start.
10+
311
## 1.0.0
412

513
### Major Changes

packages/storybook-addon-performance-panel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@github-ui/storybook-addon-performance-panel",
33
"description": "A Storybook addon that provides a real-time performance monitoring panel with frame timing, input latency, layout shift, and React render profiling.",
44
"type": "module",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"license": "MIT",
77
"author": "GitHub, Inc.",
88
"homepage": "https://github.com/github/storybook-addon-performance-panel#readme",

0 commit comments

Comments
 (0)