Skip to content

Commit 1b767ac

Browse files
committed
docs: remove premature changelog updates
1 parent b142554 commit 1b767ac

1 file changed

Lines changed: 0 additions & 37 deletions

File tree

packages/solid-uplot/CHANGELOG.md

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,5 @@
11
# @dschz/solid-uplot
22

3-
## 0.5.0
4-
5-
### Breaking Changes
6-
7-
#### DOM Structure Change
8-
9-
The internal DOM structure has changed to fix the infinite height growth bug when using `autoResize`.
10-
11-
**Before:**
12-
13-
```html
14-
<div class="solid-uplot">
15-
<!-- children -->
16-
<div class="uplot">...</div>
17-
</div>
18-
```
19-
20-
**After:**
21-
22-
```html
23-
<div class="solid-uplot">
24-
<!-- children -->
25-
<div class="solid-uplot-chart">
26-
<div class="uplot">...</div>
27-
</div>
28-
</div>
29-
```
30-
31-
**Migration:**
32-
33-
- If you have CSS targeting `.solid-uplot > .uplot`, update to `.solid-uplot-chart > .uplot` or `.solid-uplot .uplot`
34-
- The `ref` prop still points to the container where uPlot is rendered (now `.solid-uplot-chart`)
35-
36-
### Bug Fixes
37-
38-
- **Fixed infinite height growth bug**: Charts using `autoResize` in unconstrained containers (parent with `height: auto`) no longer grow infinitely. The chart container now uses `flex: 1 1 0` with `min-height: 0`, which allows it to fill available space without forcing parent height growth.
39-
403
## 0.4.0
414

425
### Minor Changes

0 commit comments

Comments
 (0)