pond-ts 0.36.0 → 0.37.0
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 +34 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,8 @@ The `@pond-ts` packages — `pond-ts`, `@pond-ts/react`, `@pond-ts/charts`, and
|
|
|
8
8
|
them all. Pre-1.0: minor bumps may include new features and type-level changes;
|
|
9
9
|
patch bumps are strictly additive.
|
|
10
10
|
|
|
11
|
-
[Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.
|
|
11
|
+
[Unreleased]: https://github.com/pjm17971/pond-ts/compare/v0.37.0...HEAD
|
|
12
|
+
[0.37.0]: https://github.com/pjm17971/pond-ts/compare/v0.36.0...v0.37.0
|
|
12
13
|
[0.36.0]: https://github.com/pjm17971/pond-ts/compare/v0.35.0...v0.36.0
|
|
13
14
|
[0.35.0]: https://github.com/pjm17971/pond-ts/compare/v0.34.1...v0.35.0
|
|
14
15
|
[0.34.1]: https://github.com/pjm17971/pond-ts/compare/v0.34.0...v0.34.1
|
|
@@ -32,6 +33,38 @@ patch bumps are strictly additive.
|
|
|
32
33
|
[0.19.0]: https://github.com/pjm17971/pond-ts/compare/v0.18.0...v0.19.0
|
|
33
34
|
[0.18.0]: https://github.com/pjm17971/pond-ts/compare/v0.17.1...v0.18.0
|
|
34
35
|
|
|
36
|
+
## [0.37.0] — 2026-07-02
|
|
37
|
+
|
|
38
|
+
A `@pond-ts/charts` release: the axis wave — label, tick, and domain controls
|
|
39
|
+
driven by the Tidal terminal's friction. `pond-ts`, `@pond-ts/react`, and
|
|
40
|
+
`@pond-ts/fit` carry no code changes — republished in lock-step (peer ranges
|
|
41
|
+
widen to `^0.37.0`).
|
|
42
|
+
|
|
43
|
+
### Added
|
|
44
|
+
|
|
45
|
+
- **Charts — axis title typography (`theme.axis.title`).** The rotated y-axis
|
|
46
|
+
title now renders a touch larger than the ticks by default and is fully
|
|
47
|
+
themeable (`{ color, size, opacity }`, shared with the x-axis label). (#318)
|
|
48
|
+
- **Charts — `YAxis labelPlacement`.** `'rotated'` (default) or `'top'` — a
|
|
49
|
+
horizontal title above the axis, aligned to the axis line, in a reserved
|
|
50
|
+
header band that clears the top tick. (#318, #320)
|
|
51
|
+
- **Charts — `XAxis align`.** `'center'` (**new default**), `'auto'` (previous
|
|
52
|
+
behaviour: centred but first/last end-anchored), or `'right'` (label beside an
|
|
53
|
+
extended tick). (#318)
|
|
54
|
+
- **Charts — `YAxis pad`.** Fractional headroom added to each side of the
|
|
55
|
+
resolved domain (`0` default) — lifts a tight domain off the plot edges
|
|
56
|
+
without hand-computing bounds. (#319)
|
|
57
|
+
- **Charts — `YAxis boundaryLabels`.** `false` drops the top & bottom tick
|
|
58
|
+
numbers (gridlines stay) for stacked layouts where the edge labels crowd. (#319)
|
|
59
|
+
- **Charts — new `Charts/Axes` Storybook gallery** covering the above. (#318)
|
|
60
|
+
|
|
61
|
+
### Changed
|
|
62
|
+
|
|
63
|
+
- **Charts — domain-extreme y-tick labels now clamp inside the row** instead of
|
|
64
|
+
half-overflowing the top/bottom edge (resolves Tidal friction F-charts-6). (#319)
|
|
65
|
+
- **Charts — `XAxis` tick-label default is now `'center'`** (was the
|
|
66
|
+
end-anchored `'auto'`). Pass `align="auto"` for the old behaviour. (#318)
|
|
67
|
+
|
|
35
68
|
## [0.36.0] — 2026-07-02
|
|
36
69
|
|
|
37
70
|
A `@pond-ts/charts` release: a CSS-custom-property → theme bridge so a canvas
|