pond-ts 0.31.2 → 0.32.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 +39 -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.32.0...HEAD
|
|
12
|
+
[0.32.0]: https://github.com/pjm17971/pond-ts/compare/v0.31.2...v0.32.0
|
|
12
13
|
[0.31.2]: https://github.com/pjm17971/pond-ts/compare/v0.31.1...v0.31.2
|
|
13
14
|
[0.31.1]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...v0.31.1
|
|
14
15
|
[0.31.0]: https://github.com/pjm17971/pond-ts/compare/v0.30.0...3c4e8bd
|
|
@@ -26,6 +27,43 @@ patch bumps are strictly additive.
|
|
|
26
27
|
[0.19.0]: https://github.com/pjm17971/pond-ts/compare/v0.18.0...v0.19.0
|
|
27
28
|
[0.18.0]: https://github.com/pjm17971/pond-ts/compare/v0.17.1...v0.18.0
|
|
28
29
|
|
|
30
|
+
## [0.32.0] — 2026-06-29
|
|
31
|
+
|
|
32
|
+
A `@pond-ts/charts` release: value-axis support across the fill/bar layers, plus
|
|
33
|
+
explicit y-axis ticks and the annotation primitives. `pond-ts`,
|
|
34
|
+
`@pond-ts/react`, and `@pond-ts/fit` are unchanged this cycle — republished in
|
|
35
|
+
lock-step at the same version.
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
|
|
39
|
+
- **Charts — explicit y-axis ticks.** `<YAxis ticks={[{ at, label }]}>` places
|
|
40
|
+
ticks (and their gridlines) at chosen values with custom labels, mirroring
|
|
41
|
+
`<XAxis ticks>`; `ticks={[]}` draws none. (#303)
|
|
42
|
+
- **Charts — value-axis (`ValueSeries`) support for `<AreaChart>`,
|
|
43
|
+
`<BandChart>`, and `<BarChart>`.** Each now accepts a `ValueSeries`
|
|
44
|
+
(`series.byValue('dist')`) and plots against its monotonic value axis
|
|
45
|
+
(distance, cumulative work, …), not just time — joining `<LineChart>`, which
|
|
46
|
+
already did. The container infers the x-axis kind from the data, so there is
|
|
47
|
+
no axis-type prop. `BarChart` derives each bar's span from neighbour spacing
|
|
48
|
+
on a point-keyed value axis (the splits/laps case). (#304, #307)
|
|
49
|
+
- **Charts — annotations: `<Region>`, `<Marker>`, `<Baseline>`.** User-authored
|
|
50
|
+
marks in a distinct register — a shaded x-span, a vertical x line, and a
|
|
51
|
+
horizontal value line — with flag labels, a three-level depth ramp, and opt-in
|
|
52
|
+
interaction modes (inspect-select, single-edit, drag-resize, create-tool
|
|
53
|
+
gestures) coordinated by the container (cross-row guide lines,
|
|
54
|
+
snap-to-guideline, z-order). Adds `ChartContainer` annotation props
|
|
55
|
+
(`creating` / `editAnnotations` / `onCreate` / `onSelectAnnotation` /
|
|
56
|
+
`onHoverAnnotation` / `onEditAnnotation` / `snap`) and a `ChartTheme.annotation`
|
|
57
|
+
depth theme. (#306)
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
|
|
61
|
+
- **Charts — the fill/bar layer `series` prop widens (additive).**
|
|
62
|
+
`AreaChartProps` / `BandChartProps` / `BarChartProps` now accept
|
|
63
|
+
`TimeSeries | ValueSeries`; the new second generic defaults, so existing
|
|
64
|
+
one-type-argument uses (`AreaChartProps<S>`, `<AreaChart<S>>`) compile
|
|
65
|
+
unchanged. (#304, #307)
|
|
66
|
+
|
|
29
67
|
## [0.31.2] — 2026-06-29
|
|
30
68
|
|
|
31
69
|
### Fixed
|